foundInCurrentRoutes method
Implementation
bool foundInCurrentRoutes(String path) {
bool foundMatching = false;
for (RouteConfig element in _history) {
if (element.path == path) {
foundMatching = true;
}
}
return foundMatching;
}