PaymentTransactionStatus.fromJson constructor
Implementation
PaymentTransactionStatus.fromJson(Map<String, dynamic> json) {
id = json['id'];
transactionId = json['transactionId'];
status = json['status'];
note = json['note'];
createdDate = json['createdDate'].cast<int>();
expiryDate = json['expiryDate'].cast<int>();
timeOutForExpiry = json['timeOutForExpiry'];
}