Polygon constructor

Polygon(
  1. int? srid,
  2. List<LineString> rings,
  3. bool hasZ,
  4. bool hasM,
)

Implementation

Polygon(int? srid, this.rings, bool hasZ, bool hasM)
    : super(srid, GeometryType.polygon, hasZ, hasM);