GeoJsonGeometryCollection constructor
const
GeoJsonGeometryCollection({
- required List<
GeoJsonGeometry> geometries, - String? name,
- dynamic type,
Default constructor JSON 'type' is intentionally ignored and super is forced to use proper type
Implementation
const GeoJsonGeometryCollection({required this.geometries, this.name, type}) : super(GeoJsonGeometryType.geometryCollection);