PaymentIntentUsBankAccount constructor

const PaymentIntentUsBankAccount({
  1. IssuingCardholderType? accountHolderType,
  2. String? accountNumber,
  3. PaymentIntentAccountType? accountType,
  4. String? financialConnectionsAccount,
  5. String? routingNumber,
})

payment_method_param

If this is an `us_bank_account` PaymentMethod, this hash contains details about the US bank account payment method.

Implementation

const PaymentIntentUsBankAccount({
  this.accountHolderType,
  this.accountNumber,
  this.accountType,
  this.financialConnectionsAccount,
  this.routingNumber,
});