north property

Point<int> get north

The point to the north of this point.

Implementation

Point<int> get north => Point(x, y + 1);