AddressComponent constructor

AddressComponent({
  1. String? neighborhood,
  2. String? building,
  3. String? province,
  4. String? countryCode,
  5. String? city,
  6. String? citycode,
  7. String? district,
  8. String? adcode,
  9. StreetNumber? streetNumber,
  10. String? country,
  11. String? township,
  12. String? towncode,
})

Implementation

AddressComponent(
    {this.neighborhood,
    this.building,
    this.province,
    this.countryCode,
    this.city,
    this.citycode,
    this.district,
    this.adcode,
    this.streetNumber,
    this.country,
    this.township,
    this.towncode});