Coord constructor

Coord(
  1. double x,
  2. double y
)

Implementation

Coord(this.x, this.y) {
  // print('Created coordinate with x: $x and y: $y');
}