implemented TPIN and quick pay within bank

This commit is contained in:
2025-06-23 04:47:05 +05:30
parent 0d2dfc817e
commit 77a2654401
44 changed files with 1692 additions and 1153 deletions

View File

@@ -2,7 +2,7 @@ class Transaction {
final String? id;
final String? name;
final String? date;
final int? amount;
final String? amount;
final String? type;
Transaction({this.id, this.name, this.date, this.amount, this.type});
@@ -21,7 +21,7 @@ class Transaction {
id: json['id'] as String?,
name: json['name'] as String?,
date: json['date'] as String?,
amount: json['amount'] as int?,
amount: json['amount'] as String?,
type: json['type'] as String?,
);
}