offAllNamed static method
Remove all routes until the first one with named route
Implementation
static void offAllNamed(String routeName, {Object? arguments}) {
navigator?.pushNamedAndRemoveUntil(routeName, (route) => false, arguments: arguments);
}