GeoJsonGeometryCollection constructor

GeoJsonGeometryCollection({
  1. List<GeoJsonFeature?>? geometries,
  2. String? name,
})

Default constructor

Implementation

GeoJsonGeometryCollection({this.geometries, this.name}) {
  geometries ??= <GeoJsonFeature<dynamic>>[];
}