GeoJsonFeatureCollection constructor

GeoJsonFeatureCollection({
  1. List<GeoJsonFeature>? collection,
})

Default constructor

Implementation

GeoJsonFeatureCollection({List<GeoJsonFeature<dynamic>>? collection})
    : this.collection = collection ?? <GeoJsonFeature<dynamic>>[];