popUntil method

  1. @override
void popUntil(
  1. bool predicate(
    1. Route
    )
)
override

Removes all routes in the navigation stack until the condition specified in predicate is satisfied

Implementation

@override
void popUntil(bool Function(Route<dynamic>) predicate) =>
    dispatch(NavigateAction.popUntil(predicate));