ConfirmSetupParams constructor

const ConfirmSetupParams({
  1. required String return_url,
  2. String? confirmation_token,
})

Implementation

const factory ConfirmSetupParams({
  /// The url your customer will be directed to after they complete authentication.
  required String return_url,

  /// If collected previously, the ID of the ConfirmationToken to use to confirm this SetupIntent.
  /// This is mutually exclusive with the elements parameter.
  String? confirmation_token,
}) = _ConfirmSetupParams;