remove method

void remove(
  1. T item
)

Implementation

void remove(T item) {
  _items.remove(item);
  notifyListeners(#remove);
}