popped property

Future<T?> popped

The pop completer that's used in navigation actions e.g StackRouter.push it completes when the built route is popped

Implementation

Future<T?> get popped => routeData.router.ignorePopCompleters
    ? SynchronousFuture(null)
    : _popCompleter.future;