Remove all occurrences of Iterable items from the list.
items
void removeAllIterable(Iterable<T> items) { for (final item in items) { removeAll(item); } }