removeAllMapValues method

void removeAllMapValues(
  1. Map<T, dynamic> items
)

Remove all occurrences of Map items values from the list.

Implementation

void removeAllMapValues(Map<T, dynamic> items) {
  for (final item in items.values) {
    removeAll(item);
  }
}