Receipt constructor

Receipt({
  1. String? operator,
  2. List<Sale>? sales,
  3. Lottery? lottery,
  4. List<Refund>? refunds,
  5. List<Subtotal>? subtotals,
  6. List<Payment>? payments,
  7. BarCode? barCode,
  8. QrCode? qrCode,
  9. GraphicCoupon? graphicCoupon,
  10. OpenDrawer? openDrawer,
  11. Message? personalTaxCode,
  12. DisplayText? beginDisplayText,
  13. 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,
});