ShippingAddress constructor

ShippingAddress({
  1. String? firstName,
  2. String? lastName,
  3. String? line1,
  4. String? line2,
  5. String? city,
  6. String? state,
  7. String? postalCode,
  8. String? country,
  9. bool? isFullAddress,
  10. bool? isStoreAddress,
})

Implementation

ShippingAddress({
  this.firstName,
  this.lastName,
  this.line1,
  this.line2,
  this.city,
  this.state,
  this.postalCode,
  this.country,
  this.isFullAddress,
  this.isStoreAddress,
});