pathFinder property

PathFinder get pathFinder

Accessor for the PathFinder from the PermitRunner. Throws StateError if the runner is not a PermitRunner.

Implementation

PathFinder get pathFinder {
  if (runner is PermitRunner) {
    return (runner as PermitRunner).pathFinder;
  }
  throw StateError('Runner is not a PermitRunner');
}