GeocodingResult constructor

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

Implementation

GeocodingResult({
  required this.geometry,
  required this.placeId,
  this.types = const <String>[],
  this.addressComponents = const <AddressComponent>[],
  this.postcodeLocalities = const <String>[],
  this.partialMatch = false,
  this.formattedAddress,
});