Remove an item
bool remove(ListTile? item) { bool remove = item != null; if (remove) { remove = _items.remove(item); } return remove; }