popped property
Future<R?>
get
popped
The pop completer that's used in navigation actions e.g StackRouter.push it completes when the built route is popped
Implementation
Future<R?> get popped {
if (router.ignorePopCompleters || _popCompleter == null) {
return SynchronousFuture(null);
} else {
return _popCompleter!.future;
}
}