Print constructor

Print({
  1. required String base64image,
  2. required String marchantname,
  3. required String datetime,
  4. required String terminalid,
  5. required String merchantid,
  6. required String transactiontype,
  7. String? accountname,
  8. required String copytype,
  9. String? rrn,
  10. required String stan,
  11. String? pan,
  12. String? expiry,
  13. String? accountnumber,
  14. String? bank,
  15. required String transactionstatus,
  16. required String responsecode,
  17. required String message,
  18. required String appversion,
  19. required String amount,
  20. required String bottommessage,
})

Implementation

Print({
  required this.base64image,
  required this.marchantname,
  required this.datetime,
  required this.terminalid,
  required this.merchantid,
  required this.transactiontype,
  this.accountname,
  required this.copytype,
  this.rrn,
  required this.stan,
  this.pan,
  this.expiry,
  this.accountnumber,
  this.bank,
  required this.transactionstatus,
  required this.responsecode,
  required this.message,
  required this.appversion,
  required this.amount,
  required this.bottommessage,
});