popUntil method

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

Implementation

void popUntil(bool Function(Route<dynamic>) predicate) =>
    Navigator.of(_navigatorKey.currentContext!).popUntil(predicate);