remove method
void
remove(
- T item
Removes an item from the list.
Implementation
void remove(T item) {
final newList = List<T>.from(value)..remove(item);
value = newList;
}
Removes an item from the list.
void remove(T item) {
final newList = List<T>.from(value)..remove(item);
value = newList;
}