Point<T extends num> constructor
- required T x,
- required T y,
Creates a Point at the given x and y coordinates.
Implementation
const Point({required this.x, required this.y});
Creates a Point at the given x and y coordinates.
const Point({required this.x, required this.y});