BankAccountTokenParams constructor
const
BankAccountTokenParams({})
Implementation
const factory BankAccountTokenParams({
/// Type of token.
@Default(TokenType.BankAccount) TokenType type,
/// unique number of the account.
required String accountNumber,
/// 2 letter code of the country where the account is located
required String country,
/// The three letter ISO 4217 code for the currency.
required String currency,
/// Full name of the account holder
String? accountHolderName,
/// Entity that is holder of the account.
BankAccountHolderType? accountHolderType,
/// The routing number of the bank account (e.g. needer for US accounts).
String? routingNumber,
}) = _BankAccountTokenParams;