SessionShippingAddress constructor

const SessionShippingAddress({
  1. String? city,
  2. String? country,
  3. required String line1,
  4. String? line2,
  5. String? postalCode,
  6. String? state,
})

address

Shipping address.

Implementation

const SessionShippingAddress({
  this.city,
  this.country,
  required this.line1,
  this.line2,
  this.postalCode,
  this.state,
});