removeWhere method
Removes the routes satisfying the provided predicate
.
Implementation
void removeWhere(bool Function(String element) predicate) {
for (String e in routes.toList(growable: false)) {
if (predicate(e)) {
routes.remove(route);
_accounted.add(route);
}
}
notifyListeners();
}