silentRemoveWhere method
Removes all elements that satisfy the given predicate where without notifying listeners.
where: A function that returnstruefor elements to remove.
Implementation
void silentRemoveWhere(bool Function(T) where) {
value.removeWhere(where);
}