removeAllMapKeys method

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

Remove all occurrences of Map items keys from the list.

Implementation

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