Point constructor

Point({
  1. required int x,
  2. required int y,
})

Implementation

Point({required this.x, required this.y});