ShopInvoiceInfoModel constructor

ShopInvoiceInfoModel({
  1. int? proId,
  2. String? currency,
  3. String? colorCode,
  4. String? shopInvoiceUniqueId,
  5. String? pictureUrl,
  6. int? commissionId,
  7. String? itemTitle,
  8. double? price,
  9. String? qr,
  10. int? purchasedAt,
  11. int? paymentStatus,
})

Implementation

ShopInvoiceInfoModel({
  this.proId,
  this.currency,
  this.colorCode,
  this.shopInvoiceUniqueId,
  this.pictureUrl,
  this.commissionId,
  this.itemTitle,
  this.price,
  this.qr,
  this.purchasedAt,
  this.paymentStatus,
});