SetupIntentResponse constructor

const SetupIntentResponse({
  1. SetupIntent? setupIntent,
  2. StripeError? error,
})

Implementation

const factory SetupIntentResponse({
  /// If not null, a SetupIntent was retrieved successfully
  SetupIntent? setupIntent,

  /// If not null, an error occurred
  StripeError? error,
}) = _SetupIntentResponse;