removeAllList method

void removeAllList(
  1. List<T> items
)

Remove all occurrences of List items from the list.

Implementation

void removeAllList(List<T> items) {
  for (final item in items) {
    removeAll(item);
  }
}