CheckoutProductModel constructor

CheckoutProductModel({
  1. required String productId,
  2. num? price,
  3. num? quantity,
  4. CurrencyTypes? currency,
})

Implementation

CheckoutProductModel({
  required this.productId,
  this.price,
  this.quantity,
  this.currency,
});