popUntilRoute method
Pop until reaching a specific route
Implementation
void popUntilRoute(String routePath) {
while (canPop() && GoRouter.of(this).location != routePath) {
pop();
}
}
Pop until reaching a specific route
void popUntilRoute(String routePath) {
while (canPop() && GoRouter.of(this).location != routePath) {
pop();
}
}