CheckoutSessionCustomerDetails constructor

const CheckoutSessionCustomerDetails({
  1. Address? address,
  2. String? email,
  3. String? name,
  4. String? phone,
  5. CheckoutSessionCustomerDetailsTaxExempt? taxExempt,
  6. List<PaymentPagesCheckoutSessionTaxId>? taxIds,
})

The customer details including the customer's tax exempt status and the customer's tax IDs. Customer's address details are not present on Sessions in `setup` mode.

Implementation

const CheckoutSessionCustomerDetails({
  this.address,
  this.email,
  this.name,
  this.phone,
  this.taxExempt,
  this.taxIds,
});