popUntil method
- String routeName
Pop until specific route
Implementation
void popUntil(String routeName) {
navigator?.popUntil((route) => route.settings.name == routeName);
}
Pop until specific route
void popUntil(String routeName) {
navigator?.popUntil((route) => route.settings.name == routeName);
}