TerminalLogicalInfo.fromJson constructor
Implementation
factory TerminalLogicalInfo.fromJson(Map<String, dynamic> json) => TerminalLogicalInfo(
terminalId: json["terminalId"] as String,
merchantId: json["merchantId"] as String,
centerTerminalId: json["centerTerminalId"] as String?,
merchantName: json["merchantName"] as String?,
merchantPostalCode: json["merchantPostalCode"] as String?,
merchantPhone: json["merchantPhone"] as String?,
);