OrderItemDto constructor
- required String productId,
- required int qty,
- required int price,
- String? discountLabel,
- bool? promotional,
Implementation
OrderItemDto({
required this.productId,
required this.qty,
required this.price,
this.discountLabel,
this.promotional,
});