removeItem method

void removeItem(
  1. T item
)

Implementation

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