Point constructor

Point(
  1. double x,
  2. double y
)

Implementation

factory Point(double x, double y) => Point.fromXY(x, y);