BankAccountPaymentRequest constructor

BankAccountPaymentRequest({
  1. required String amount,
  2. required String currency,
  3. required String email,
  4. required String fullName,
  5. required String txRef,
  6. required String phoneNumber,
  7. required String accountNumber,
  8. required String accountBank,
})

Implementation

BankAccountPaymentRequest(
    {required this.amount,
    required this.currency,
    required this.email,
    required this.fullName,
    required this.txRef,
    required this.phoneNumber,
    required this.accountNumber,
    required this.accountBank});