OrderItemDto constructor

OrderItemDto({
  1. required String productId,
  2. required int qty,
  3. required int price,
  4. String? discountLabel,
  5. bool? promotional,
})

Implementation

OrderItemDto({
  required this.productId,
  required this.qty,
  required this.price,
  this.discountLabel,
  this.promotional,
});