removeWhere method
Removes all elements that satisfy the condition.
Implementation
void removeWhere(bool Function(E item) condition) {
_items.value.removeWhere(condition);
_makeActionOnDataChanging();
}
Removes all elements that satisfy the condition.
void removeWhere(bool Function(E item) condition) {
_items.value.removeWhere(condition);
_makeActionOnDataChanging();
}