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,
  7. String? status,
  8. String? url,
})

Implementation

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