PaymentTransactionStatus.fromJson constructor

PaymentTransactionStatus.fromJson(
  1. Map<String, dynamic> json
)

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'];
}