EMVCardLog constructor

EMVCardLog({
  1. bool? isAmountExist,
  2. int? amount,
  3. bool? isOtherAmountExist,
  4. int? otherAmount,
  5. bool? isDateExist,
  6. String? transDate,
  7. bool? isTimeExist,
  8. String? transTime,
  9. bool? isCountryCodeExist,
  10. String? countryCode,
  11. bool? isCurrencyExist,
  12. String? currencyCode,
  13. bool? isATCExist,
  14. String? ATC,
  15. bool? isTransTypeExist,
  16. int? transType,
  17. bool? isMerchNameExist,
  18. String? merchName,
  19. String? otherTLVLog,
})

Implementation

EMVCardLog({
   this.isAmountExist,
   this.amount,
   this.isOtherAmountExist,
   this.otherAmount,
   this.isDateExist,
   this.transDate,
   this.isTimeExist,
   this.transTime,
   this.isCountryCodeExist,
   this.countryCode,
   this.isCurrencyExist,
   this.currencyCode,
   this.isATCExist,
   this.ATC,
   this.isTransTypeExist,
   this.transType,
   this.isMerchNameExist,
   this.merchName,
   this.otherTLVLog});