remove method

void remove(
  1. T? item
)

Implementation

void remove(T? item) {
  _value.remove(item);
  update();
}