Address constructor

Address({
  1. String? amenity,
  2. String? road,
  3. String? neighbourHood,
  4. String? town,
  5. String? country,
  6. String? countryCode,
  7. String? postalCode,
  8. String? state,
  9. String? stateDistrict,
  10. String? isoLvl6,
  11. String? isoLvl14,
})

Implementation

Address(
    {this.amenity,
    this.road,
    this.neighbourHood,
    this.town,
    this.country,
    this.countryCode,
    this.postalCode,
    this.state,
    this.stateDistrict,
    this.isoLvl6,
    this.isoLvl14});