next method

void next([
  1. bool continueNavigation = true
])

Completes _completer with either true to continue navigation or false to abort navigation

Implementation

void next([bool continueNavigation = true]) {
  assert(!isResolved, 'Make sure `resolver.next()` is only called once.');
  _completer.complete(continueNavigation);
}