isAfter method

bool isAfter(
  1. CellOffset other
)

Implementation

bool isAfter(CellOffset other) {
  return y > other.y || (y == other.y && x > other.x);
}