popUntilRouteWithName method

void popUntilRouteWithName(
  1. String name, {
  2. bool scoped = true,
})

Helper to pop all routes until route with name is found see popUntil

Implementation

void popUntilRouteWithName(String name, {bool scoped = true}) {
  popUntil(ModalRoute.withName(name), scoped: scoped);
}