MultiPoint constructor

MultiPoint(
  1. int? srid,
  2. List<Point> points,
  3. bool hasZ,
  4. bool hasM,
)

Implementation

MultiPoint(int? srid, this.points, bool hasZ, bool hasM)
    : super(srid, GeometryType.multiPoint, hasZ, hasM);