GeoJsonMultiPoint constructor

GeoJsonMultiPoint({
  1. required MultiPointCoordinates coordinates,
  2. String? name,
  3. dynamic type,
})

Default constructor JSON 'type' is intentionally ignored and super is forced to use proper type

Implementation

GeoJsonMultiPoint({required this.coordinates, this.name, type}) : super(GeoJsonGeometryType.multiPoint);