CreateCheckoutSessionRequest constructor

const CreateCheckoutSessionRequest({
  1. required String priceId,
  2. String? countryCode,
  3. String? clientGeoipCountryCode,
  4. bool? euWithdrawalWaiverAccepted,
  5. PricingModeEnum? pricingMode,
  6. CheckoutPaymentMethodEnum? paymentMethod,
})

Implementation

const CreateCheckoutSessionRequest({
  required this.priceId,
  this.countryCode,
  this.clientGeoipCountryCode,
  this.euWithdrawalWaiverAccepted,
  this.pricingMode,
  this.paymentMethod,
});