Point constructor

Point(
  1. int? srid,
  2. double x,
  3. double y, [
  4. double? z,
  5. double? m,
])

Implementation

Point(int? srid, this.x, this.y, [this.z, this.m])
    : super(srid, GeometryType.point, z != null, m != null);