Point constructor

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

Implementation

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