Beneficiary details changes, cheque and yojna services

This commit is contained in:
2026-03-12 12:11:30 +05:30
parent 89569ab1c3
commit d8ebd0ed0e
5 changed files with 626 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ class Beneficiary {
final String ifscCode;
final String? bankName;
final String? branchName;
final String? transactionLimit;
final String? tpin;
Beneficiary({
@@ -16,6 +17,7 @@ class Beneficiary {
required this.ifscCode,
this.bankName,
this.branchName,
this.transactionLimit,
this.tpin,
});
@@ -30,6 +32,7 @@ class Beneficiary {
ifscCode: json['ifsc_code'] ?? json['ifscCode'] ?? '',
bankName: json['bank_name'] ?? json['bankName'] ?? '',
branchName: json['branch_name'] ?? json['branchName'] ?? '',
transactionLimit: json['transactionLimit'] ?? '',
);
}