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