Point constructor

Point({
  1. double x = 0.0,
  2. double y = 0.0,
  3. SpatialReferenceSystem? srs,
})

Implementation

Point({this.x = 0.0, this.y = 0.0, SpatialReferenceSystem? srs})
    : super(srs: srs);