popScopesTill abstract method

Future<bool> popScopesTill(
  1. String name, {
  2. bool inclusive = true,
})

if you have a lot of scopes with names you can pop (see popScope) all scopes above the scope with name including that scope unless inclusive= false Scopes are popped in order from the top As dispose functions can be async, you should await this function. If no scope with name exists, nothing is popped and false is returned

Implementation

Future<bool> popScopesTill(String name, {bool inclusive = true});