next method

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

Implementation

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