remove method
void
remove(
- T item
Implementation
void remove(T item) {
final temp = List<T>.from(value);
temp.remove(item);
value = temp;
}
void remove(T item) {
final temp = List<T>.from(value);
temp.remove(item);
value = temp;
}