remove method

void remove(
  1. T item
)

Removes item from the list.

Implementation

void remove(T item) {
  value.remove(item);
  notify();
}