GeocodingResult constructor

GeocodingResult({
  1. Geometry? geometry,
  2. String? placeId,
  3. List<String>? types,
  4. List<AddressComponent>? addressComponents,
  5. List<String>? postcodeLocalities,
  6. bool? partialMatch,
  7. String? formattedAddress,
})

Implementation

GeocodingResult({
  this.geometry,
  this.placeId,
  this.types,
  this.addressComponents,
  this.postcodeLocalities,
  this.partialMatch,
  this.formattedAddress,
});