removeWhere method

void removeWhere(
  1. bool condition(
    1. E item
    )
)

Removes all elements that satisfy the condition.

Implementation

void removeWhere(bool Function(E item) condition) {
  _items.value.removeWhere(condition);
  _makeActionOnDataChanging();
}