upLeftNeighborTile method

T? upLeftNeighborTile(
  1. int idx
)

Implementation

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