MiscDto constructor

MiscDto(
  1. {String? receiptLanguage,
  2. String? footerText,
  3. List<AdditionalReceiptDto>? additionalReceipts,
  4. required bool isExample,
  5. List<BillCategoryDto>? categories,
  6. List<AfterSalesCouponDto>? afterSalesCoupons,
  7. String? returnBarcode,
  8. ReturnBarcodeType? returnBarcodeType,
  9. String? cashierName,
  10. bool? isHospitalityBill,
  11. HospitalityBillInformationDto? hospitalityBillInformation,
  12. List<CustomSectionDto>? customSections,
  13. String? contentAreaId,
  14. CountrySpecificAttributesBaseDto? countrySpecificAttributes,
  15. ReceiptTransactionTypeDto? receiptTransactionType,
  16. List<LinkedBillDto>? linkedBills}
)

Implementation

MiscDto({
  this.receiptLanguage,
  this.logo,
  this.footerText,
  this.additionalReceipts,
  required this.isExample,
  this.categories,
  this.afterSalesCoupons,
  this.returnBarcode,
  this.returnBarcodeType,
  this.cashierName,
  this.isHospitalityBill,
  this.hospitalityBillInformation,
  this.customSections,
  this.contentAreaId,
  this.countrySpecificAttributes,
  this.receiptTransactionType,
  this.linkedBills,
});