IntentCreationCallbackParams constructor

  1. @JsonSerializable(explicitToJson: true)
const IntentCreationCallbackParams({
  1. String? clientSecret,
  2. StripeException? error,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory IntentCreationCallbackParams({
  /// Client secret of the payment intent or setup intent.
  String? clientSecret,

  /// Error that occurred during the creation of the payment intent or setup intent.
  StripeException? error,
}) = _IntentCreationCallbackParams;