CheckoutSessionCustomerDetails constructor
const
CheckoutSessionCustomerDetails({
- Address? address,
- String? email,
- String? name,
- String? phone,
- CheckoutSessionCustomerDetailsTaxExempt? taxExempt,
- 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,
});