downRightNeighborTile method

int? downRightNeighborTile(
  1. int idx
)

Implementation

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