popUntil<T extends Widget> static method

NavigationPopUntilAction<T> popUntil<T extends Widget>([
  1. Object? result
])

Pops all routes until the page of type T is visible.

Implementation

static NavigationPopUntilAction<T> popUntil<T extends Widget>([
  Object? result,
]) {
  return NavigationPopUntilAction<T>._(result);
}