Geocode constructor

const Geocode({
  1. String? formattedAddress,
  2. String? country,
  3. String? province,
  4. String? cityCode,
  5. String? city,
  6. String? district,
  7. Neighborhood? neighborhood,
  8. Building? building,
  9. String? adcode,
  10. String? street,
  11. String? number,
  12. LatLng? location,
  13. String? level,
})

Implementation

const Geocode({
  this.formattedAddress,
  this.country,
  this.province,
  this.cityCode,
  this.city,
  this.district,
  this.neighborhood,
  this.building,
  this.adcode,
  this.street,
  this.number,
  this.location,
  this.level,
});