Address constructor

Address({
  1. String? city,
  2. String? countryCode,
  3. String? country,
  4. String? district,
  5. String? subdistrict,
  6. String? houseNumberOrName,
  7. String? postalCode,
  8. String? state,
  9. String? county,
  10. String? street,
})

Implementation

Address({
  this.city,
  this.countryCode,
  this.country,
  this.district,
  this.subdistrict,
  this.houseNumberOrName,
  this.postalCode,
  this.state,
  this.county,
  this.street,
});