CheckoutSession constructor

CheckoutSession(
  1. {required String object,
  2. required String id,
  3. required List<PaymentMethodType> paymentMethodTypes,
  4. String? clientReferenceId,
  5. String? customer,
  6. String? paymentIntent}
)

Implementation

CheckoutSession({
  required this.object,
  required this.id,
  required this.paymentMethodTypes,
  this.clientReferenceId,
  this.customer,
  this.paymentIntent,
});