BankAccountPaymentManager constructor

BankAccountPaymentManager({
  1. required String publicKey,
  2. required String currency,
  3. required String amount,
  4. required String email,
  5. required String txRef,
  6. required bool isDebugMode,
  7. required String phoneNumber,
  8. required String fullName,
  9. String? accountBank,
  10. String? accountNumber,
  11. String? redirectUrl,
})

BankAccountPaymentManager constructor Available for only payments with NGN currency

Implementation

BankAccountPaymentManager({
  required this.publicKey,
  required this.currency,
  required this.amount,
  required this.email,
  required this.txRef,
  required this.isDebugMode,
  required this.phoneNumber,
  required this.fullName,
  this.accountBank,
  this.accountNumber,
  this.redirectUrl,
});