goUntil method

RouteQueueEntry goUntil(
  1. String location,
  2. UntilFn test
)

Implementation

RouteQueueEntry goUntil(String location, UntilFn test) {
  _until(test, ignore: true);
  return go(location);
}