TransactionResultResponse.fromMap constructor
TransactionResultResponse.fromMap(
- Map<String, dynamic> json
)
Implementation
factory TransactionResultResponse.fromMap(Map<String, dynamic> json) => TransactionResultResponse(
channelCode: json["channelCode"] == null ? null : json["channelCode"],
invoiceNo: json["invoiceNo"] == null ? null : json["invoiceNo"],
type: json["type"] == null ? null : json["type"],
data: json["data"] == null ? null : json["data"],
fallbackData: json["fallbackData"] == null ? null : json["fallbackData"],
expiryTimer: json["expiryTimer"] == null ? null : json["expiryTimer"],
expiryDescription: json["expiryDescription"] == null ? null : json["expiryDescription"],
responseCode: json["responseCode"] == null ? null : json["responseCode"],
responseDescription: json["responseDescription"] == null ? null : json["responseDescription"],
);