Language Changes

This commit is contained in:
Nilanjan Chakrabarti
2025-07-09 12:46:51 +05:30
commit 5e72baf1d3
458 changed files with 52259 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
class Transfer {
final String fromAccount;
final String toAccount;
final String toAccountType;
final String amount;
String? tpin;
Transfer({
required this.fromAccount,
required this.toAccount,
required this.toAccountType,
required this.amount,
this.tpin,
});
Map<String, dynamic> toJson() {
return {
'fromAccount': fromAccount,
'toAccount': toAccount,
'toAccountType': toAccountType,
'amount': amount,
'tpin': tpin,
};
}
}
class TransferResponse {
final String? status;
final String? message;
final String? error;
TransferResponse({
required this.status,
required this.message,
required this.error,
});
factory TransferResponse.fromJson(Map<String, dynamic> json) {
return TransferResponse(
status: json['status'] as String?,
message: json['message'] as String?,
error: json['error'] as String?,
);
}
}