northwest property

Point<int> get northwest

The point to the northwest of this point.

Implementation

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