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