isEqual method

bool isEqual(
  1. CellOffset other
)

Implementation

bool isEqual(CellOffset other) {
  return other.x == x && other.y == y;
}