Positive Pay fixed, yojna accounts created

This commit is contained in:
2026-02-26 12:52:20 +05:30
parent 30943cda62
commit bade0f112f
11 changed files with 830 additions and 31 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'] ?? '',
);
}