PaymentIntentAcssDebit constructor

const PaymentIntentAcssDebit({
  1. required String accountNumber,
  2. required String institutionNumber,
  3. required String transitNumber,
})

payment_method_param

If this is an `acss_debit` PaymentMethod, this hash contains details about the ACSS Debit payment method.

Implementation

const PaymentIntentAcssDebit({
  required this.accountNumber,
  required this.institutionNumber,
  required this.transitNumber,
});