TerminalInfo constructor

const TerminalInfo({
  1. required Map<String, dynamic> raw,
  2. String? tid,
  3. String? password,
  4. String? company,
  5. String? merchantName,
  6. List<String>? header,
  7. bool? elv,
  8. bool? creditCard,
  9. bool? refNumberRequired,
  10. bool? active,
  11. String? vu,
  12. String? terminalType,
  13. String? street,
  14. String? zip,
  15. String? city,
  16. String? phone,
  17. String? fax,
  18. String? email,
})

Implementation

const TerminalInfo({
  required this.raw,
  this.tid,
  this.password,
  this.company,
  this.merchantName,
  this.header,
  this.elv,
  this.creditCard,
  this.refNumberRequired,
  this.active,
  this.vu,
  this.terminalType,
  this.street,
  this.zip,
  this.city,
  this.phone,
  this.fax,
  this.email,
});