Remarks Field in Transaction Page

This commit is contained in:
2025-09-16 12:11:57 +05:30
parent bf23627e0a
commit db39cfbcc9
9 changed files with 81 additions and 12 deletions

View File

@@ -4,13 +4,15 @@ class Transfer {
final String toAccountType;
final String amount;
String? tpin;
String? remarks;
Transfer({
required this.fromAccount,
required this.toAccount,
required this.toAccountType,
required this.amount,
this.tpin,
this.tpin,
this.remarks,
});
Map<String, dynamic> toJson() {
@@ -20,6 +22,7 @@ class Transfer {
'toAccountType': toAccountType,
'amount': amount,
'tpin': tpin,
'remarks': remarks,
};
}
}