removeWhere method

void removeWhere(
  1. bool predicate(
    1. String element
    )
)

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();
}