GetStatusResponse.fromMap constructor
GetStatusResponse.fromMap(
- Map<String, dynamic> json
)
Implementation
factory GetStatusResponse.fromMap(Map<String, dynamic> json) => GetStatusResponse(
reserve: json["reserve"],
serverDateTime: json["serverDateTime"],
status: json["status"],
code: json["code"],
message: json["message"],
reference: json["reference"],
subscriber: json["subscriber"],
serial: json["serial"],
pin: json["pin"],
txnTime: json["txnTime"],
help: json["help"],
messageSource: json["messageSource"],
extCode: json["extCode"],
);