filterAndUpdate method
Filters the list in-place based on the condition and updates listeners.
Implementation
List<E> filterAndUpdate(bool Function(E item) condition) {
_items.value = List.from(filter(condition));
_makeActionOnDataChanging();
return _items.value;
}