@pragma('vm:prefer-inline') int? downRightNeighborTile(int idx) => hasNeighborDown(idx) && hasNeighborRight(idx) ? _data[idx + width + 1] : null;