Address constructor

Address({
  1. String? addressId,
  2. String? city,
  3. String? company,
  4. String? country,
  5. bool? isRestricted,
  6. String? landmark,
  7. String? name,
  8. String? phoneNumber,
  9. String? postalCode,
  10. String? prefectureOrDistrict,
  11. String? stateOrProvince,
  12. String? street1,
  13. String? street2,
  14. String? street3,
})

Implementation

Address({
  this.addressId,
  this.city,
  this.company,
  this.country,
  this.isRestricted,
  this.landmark,
  this.name,
  this.phoneNumber,
  this.postalCode,
  this.prefectureOrDistrict,
  this.stateOrProvince,
  this.street1,
  this.street2,
  this.street3,
});