AndroidItem105 constructor

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

Implementation

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