Receipt constructor
Receipt({
- String? operator,
- List<
Sale> ? sales, - Lottery? lottery,
- List<
Refund> ? refunds, - List<
Subtotal> ? subtotals, - List<
Payment> ? payments, - BarCode? barCode,
- QrCode? qrCode,
- GraphicCoupon? graphicCoupon,
- OpenDrawer? openDrawer,
- Message? personalTaxCode,
- DisplayText? beginDisplayText,
- DisplayText? endDisplayText,
Implementation
Receipt({
this.operator,
this.sales,
this.lottery,
this.refunds,
this.subtotals,
this.payments,
this.barCode,
this.qrCode,
this.graphicCoupon,
this.openDrawer,
this.personalTaxCode,
this.beginDisplayText,
this.endDisplayText,
});