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