popUntil static method

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

Implementation

static popUntil(bool Function(Route<dynamic>) predicate) {
  Bridge.navigator.currentState!.popUntil(predicate);
}