OrderPositionUmbrella constructor

OrderPositionUmbrella({
  1. required String productId,
  2. required int qty,
  3. int? price,
  4. int? totalPrice,
})

Implementation

OrderPositionUmbrella(
    {required this.productId,
    required this.qty,
    this.price,
    this.totalPrice});