popUntilHome function
More readable than Navigator function spelled out Runs pop until '/' route
Implementation
void popUntilHome(BuildContext context) {
return Navigator.of(context).popUntil(ModalRoute.withName('/'));
}
More readable than Navigator function spelled out Runs pop until '/' route
void popUntilHome(BuildContext context) {
return Navigator.of(context).popUntil(ModalRoute.withName('/'));
}