Point constructor

Point({
  1. required double X,
  2. required double Y,
})

Implementation

Point({required this.X, required this.Y});