popUntil static method

void popUntil(
  1. BuildContext context,
  2. RoutePredicate predicate
)

Calls pop repeatedly on the navigator that most tightly encloses the given context until the predicate returns true.

The predicate may be applied to the same route more than once if Route.willHandlePopInternally is true.

To pop until a route with a certain name, use the RoutePredicate returned from ModalRoute.withName.

The routes are closed with null as their return value.

See pop for more details of the semantics of popping a route.

Typical usage is as follows:
link
void _logout() {
  Navigator.popUntil(context, ModalRoute.withName('/login'));
}

Implementation

static void popUntil(BuildContext context, RoutePredicate predicate) {
  Navigator.of(context).popUntil(predicate);
}