GeoJSONFeature constructor

GeoJSONFeature(
  1. GeoJSONGeometry geometry, {
  2. Map<String, dynamic>? properties,
  3. dynamic id,
  4. String? title,
})

The constructor for the geometry member.

Implementation

GeoJSONFeature(GeoJSONGeometry geometry,
    {this.properties, this.id, this.title})
    : _geometry = geometry,
      _bbox = geometry.bbox;