Address constructor

Address({
  1. String? country,
  2. String? countryCode,
  3. String? municipality,
  4. String? city,
  5. String? town,
  6. String? village,
  7. String? suburb,
  8. String? neighbourhood,
  9. String? road,
  10. String? houseNumber,
  11. String? postcode,
})

Implementation

Address({
  this.country,
  this.countryCode,
  this.municipality,
  this.city,
  this.town,
  this.village,
  this.suburb,
  this.neighbourhood,
  this.road,
  this.houseNumber,
  this.postcode,
});