popUntil method

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

Implementation

void popUntil(bool Function(Route<dynamic>) predicate) {
  // TODO: Set the current transition
  this.navigatorKey.currentState!.popUntil(predicate);
}