offRoute method
Supply something not a listed route.
Implementation
void offRoute(String routeName, WidgetBuilder builder) {
var path = _currentConfiguration.path;
path = '$path/$routeName';
_addPage(pageWrapper(path, builder));
nextPath(path);
}