isBlockReachable method

bool isBlockReachable(
  1. int blockId
)

Checks if a specific block is reachable.

Implementation

bool isBlockReachable(int blockId) {
  return getReachableBlocks().contains(blockId);
}