removeWhere method Null safety
- @override
- bool test(
- E element
Removes all elements of this set that satisfy test
.
Implementation
@override
void removeWhere(bool test(E element)) {
_values.removeWhere(test);
notifyListeners();
}
Removes all elements of this set that satisfy test
.
@override
void removeWhere(bool test(E element)) {
_values.removeWhere(test);
notifyListeners();
}