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