removeAll method

void removeAll(
  1. T item
)

Removes all occurrences of item.

Implementation

void removeAll(T item) => value = value.where((e) => e != item).toList();