PaymentIntentPaymentMethodOptionsCardInstallments constructor

const PaymentIntentPaymentMethodOptionsCardInstallments({
  1. List<PaymentMethodDetailsCardInstallmentsPlan>? availablePlans,
  2. required bool enabled,
  3. PaymentIntentPaymentMethodOptionsCardInstallmentsPlan? plan,
})

Installment details for this payment (Mexico only). For more information, see the [installments integration guide](https://stripe.com/docs/payments/installments).

Implementation

const PaymentIntentPaymentMethodOptionsCardInstallments({
  this.availablePlans,
  required this.enabled,
  this.plan,
});