remove method
void
remove(
- T item
Removes item from the list.
Implementation
void remove(T item) {
value.remove(item);
notify();
}
Removes item from the list.
void remove(T item) {
value.remove(item);
notify();
}