ConfirmCardPaymentOptions constructor

const ConfirmCardPaymentOptions({
  1. @Default(true) bool? handleActions,
})

Implementation

const factory ConfirmCardPaymentOptions({
  /// Set this to false if you want to handle next actions yourself,
  /// or if you want to defer next action handling until later
  /// (e.g. for use in the PaymentRequest API). Default is true.
  @Default(true) bool? handleActions,
}) = _ConfirmCardPaymentOptions;