removeAll method
void
removeAll(
- T item
Removes all occurrences of item.
Implementation
void removeAll(T item) => value = value.where((e) => e != item).toList();
Removes all occurrences of item.
void removeAll(T item) => value = value.where((e) => e != item).toList();