Point constructor

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

A point on a Cartesian plane

Implementation

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