PaymentDetail.fromJson constructor

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

Implementation

PaymentDetail.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  paymentReference = json['paymentReference'];
  confirmed = json['confirmed'];
  confirmedTime = json['confirmedTime'];
  bankID = json['bankID'];
  time = json['time'];
  amount = json['amount'];
  wbcCode = json['wbcCode'];
}