PurchaseItem constructor

PurchaseItem({
  1. String? platformId,
  2. String? platformVariantId,
  3. String? name,
  4. String? price,
  5. int? quantity,
  6. String? coupon,
})

Implementation

PurchaseItem({
  this.platformId,
  this.platformVariantId,
  this.name,
  this.price,
  this.quantity,
  this.coupon,
});