TerminalLogicalInfo constructor

TerminalLogicalInfo({
  1. required String terminalId,
  2. required String merchantId,
  3. String? centerTerminalId,
  4. String? merchantName,
  5. String? merchantPostalCode,
  6. String? merchantPhone,
})

Implementation

TerminalLogicalInfo({
  required this.terminalId,
  required this.merchantId,
  this.centerTerminalId,
  this.merchantName,
  this.merchantPostalCode,
  this.merchantPhone,
});