TokenBankAccount constructor
const
TokenBankAccount({
- String? accountHolderName,
- IssuingCardholderType? accountHolderType,
- required String accountNumber,
- ExternalAccountAccountType? accountType,
- required String country,
- String? currency,
- String? paymentMethod,
- 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,
});