TokenBankAccount constructor

const TokenBankAccount({
  1. String? accountHolderName,
  2. IssuingCardholderType? accountHolderType,
  3. required String accountNumber,
  4. ExternalAccountAccountType? accountType,
  5. required String country,
  6. String? currency,
  7. String? paymentMethod,
  8. String? routingNumber,
})

token_create_bank_account

The bank account this token will represent.

Implementation

const TokenBankAccount({
  this.accountHolderName,
  this.accountHolderType,
  required this.accountNumber,
  this.accountType,
  required this.country,
  this.currency,
  this.paymentMethod,
  this.routingNumber,
});