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

@@ -0,0 +1,19 @@
class PaymentResponse {
final bool isSuccess;
final DateTime? date;
final String? creditedAccount;
final String? amount;
final String? currency;
final String? errorMessage;
final String? errorCode;
PaymentResponse({
required this.isSuccess,
this.date,
this.creditedAccount,
this.amount,
this.currency,
this.errorMessage,
this.errorCode,
});
}