IosItem constructor

IosItem({
  1. int price = 0,
  2. double quantity = 0,
  3. required String name,
  4. required int amount,
  5. required Tax tax,
  6. String? ean13,
  7. String? shopCode,
  8. String? measurementUnit,
  9. PaymentMethod? paymentMethod,
  10. PaymentObjectIos? paymentObject,
  11. AgentData? agentData,
  12. SupplierInfo? supplierInfo,
})

Implementation

IosItem({
  this.price = 0,
  this.quantity = 0,
  required this.name,
  required this.amount,
  required this.tax,
  this.ean13,
  this.shopCode,
  this.measurementUnit,
  this.paymentMethod,
  this.paymentObject,
  this.agentData,
  this.supplierInfo,
});