remove method

void remove(
  1. T item
)

Implementation

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