upLeftNeighborTile method
Implementation
@pragma('vm:prefer-inline')
T? upLeftNeighborTile(int idx) =>
hasNeighborUp(idx) && hasNeighborLeft(idx) ? _data[idx - width - 1] : null;
@pragma('vm:prefer-inline')
T? upLeftNeighborTile(int idx) =>
hasNeighborUp(idx) && hasNeighborLeft(idx) ? _data[idx - width - 1] : null;