removeAll method

void removeAll(
  1. Iterable targets
)

Implementation

void removeAll(Iterable<dynamic> targets) {
  for (final t in targets) {
    _items.remove(t);
  }
}