upNeighborTile method

int? upNeighborTile(
  1. int idx
)

Implementation

@pragma('vm:prefer-inline')
int? upNeighborTile(int idx) => hasNeighborUp(idx) ? _data[idx - width] : null;