removeAll method
void
removeAll(
- T item
Removes all occurrences of item from the list.
Implementation
void removeAll(T item) => removeWhere((e) => e == item);
Removes all occurrences of item from the list.
void removeAll(T item) => removeWhere((e) => e == item);