CheckoutProductModel constructor
CheckoutProductModel({
- required String productId,
- num? price,
- num? quantity,
- CurrencyTypes? currency,
Implementation
CheckoutProductModel({
required this.productId,
this.price,
this.quantity,
this.currency,
});