removeWhere method

void removeWhere(
  1. Predicate<T> test
)

Iterable.removeWhere.

Implementation

void removeWhere(Predicate<T> test) {
  _list.removeWhere(test);
  notify();
}