BankTransferAuthorization constructor

BankTransferAuthorization({
  1. required String transferReference,
  2. required String transferAccount,
  3. required String transferBank,
  4. required String accountExpiration,
  5. required String transferNote,
  6. required int transferAmount,
  7. required String mode,
})

Implementation

BankTransferAuthorization(
    {required this.transferReference,
      required this.transferAccount,
      required this.transferBank,
      required this.accountExpiration,
      required this.transferNote,
      required this.transferAmount,
      required this.mode});