BankTransferPaymentManager constructor

BankTransferPaymentManager({
  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 int? frequency,
  9. required String? narration,
  10. int? duration,
  11. bool? isPermanent,
  12. String? redirectUrl,
})

Bank Transfer Payment Manager Constructor This is responsible for creating instances of BankTransferPaymentManager

Implementation

BankTransferPaymentManager({
  required this.publicKey,
  required this.currency,
  required this.amount,
  required this.email,
  required this.txRef,
  required this.isDebugMode,
  required this.phoneNumber,
  required this.frequency,
  required this.narration,
  this.duration,
  this.isPermanent,
  this.redirectUrl
});