GeocoderFeature constructor

GeocoderFeature({
  1. String? id,
  2. String? type,
  3. List<GeocoderPlaceType>? placeType = const <GeocoderPlaceType>[],
  4. double? relevance,
  5. String? address,
  6. GeocoderFeatureProperty? properties,
  7. String? text,
  8. String? placeName,
  9. String? matchingText,
  10. String? matchingPlaceName,
  11. String? language,
  12. GeocoderBbox? bbox,
  13. List<double>? center = const <double>[],
  14. GeocoderGeometry? geometry,
  15. List<GeocoderContext>? context = const <GeocoderContext>[],
  16. GeocoderRoutablePoints? routablePoints,
})

Implementation

GeocoderFeature({
  this.id,
  this.type,
  this.placeType = const <GeocoderPlaceType>[],
  this.relevance,
  this.address,
  this.properties,
  this.text,
  this.placeName,
  this.matchingText,
  this.matchingPlaceName,
  // todo: text_{language}
  // todo: place_name_{language}
  this.language,
  // todo: language_{language}
  this.bbox,
  this.center = const <double>[],
  this.geometry,
  this.context = const <GeocoderContext>[],
  this.routablePoints,
});