SessionCustomerUpdate constructor

const SessionCustomerUpdate({
  1. SessionAddress? address,
  2. SessionAddress? name,
  3. SessionAddress? shipping,
})

customer_update_params

Controls what fields on Customer can be updated by the Checkout Session. Can only be provided when `customer` is provided.

Implementation

const SessionCustomerUpdate({
  this.address,
  this.name,
  this.shipping,
});