Items constructor
Items({
- required String name,
- required String quantity,
- required String amount,
- required String price,
- required Tax tax,
- PaymentMethod? paymentMethod,
- PaymentObject? paymentObject,
- String? ean13,
- String? shopCode,
- AgentData? agentData,
- SupplierInfo? supplierInfo,
Создает экземпляр массива позиций чека с информацией о товарах.
Implementation
Items({
required this.name,
required this.quantity,
required this.amount,
required this.price,
required this.tax,
this.paymentMethod,
this.paymentObject,
this.ean13,
this.shopCode,
this.agentData,
this.supplierInfo,
});