Remove all occurrences of Map items values from the list.
items
void removeAllMapValues(Map<T, dynamic> items) { for (final item in items.values) { removeAll(item); } }