ShippingAddress constructor

ShippingAddress({
  1. String? address1,
  2. String? address2,
  3. String? city,
  4. Null company,
  5. String? country,
  6. String? firstName,
  7. String? lastName,
  8. String? latitude,
  9. String? longitude,
  10. String? phone,
  11. String? province,
  12. String? zip,
  13. String? name,
  14. String? countryCode,
  15. String? provinceCode,
})

Implementation

ShippingAddress(
    {this.address1,
    this.address2,
    this.city,
    this.company,
    this.country,
    this.firstName,
    this.lastName,
    this.latitude,
    this.longitude,
    this.phone,
    this.province,
    this.zip,
    this.name,
    this.countryCode,
    this.provinceCode});