Product constructor

Product({
  1. required String productId,
  2. String? productType,
  3. required String productStatus,
  4. String? priceLabel,
  5. int? price,
  6. String? currency,
  7. String? language,
  8. String? title,
  9. String? description,
  10. String? imageUrl,
  11. String? promoImageUrl,
  12. Subscription? subscription,
})

Implementation

Product({
  required this.productId,
  this.productType,
  required this.productStatus,
  this.priceLabel,
  this.price,
  this.currency,
  this.language,
  this.title,
  this.description,
  this.imageUrl,
  this.promoImageUrl,
  this.subscription,
});