GeoJsonFeature constructor

const GeoJsonFeature({
  1. required String type,
  2. required Map<String, dynamic> properties,
  3. required GeoJsonFeatureGeometry geometry,
  4. List<ORSCoordinate>? bbox,
})

Implementation

const GeoJsonFeature({
  required this.type,
  required this.properties,
  required this.geometry,
  this.bbox,
});