removeWhere method
remove element in list and notify listeners
Implementation
void removeWhere(bool test(T element)) {
value.removeWhere(test);
notifyListeners();
}
remove element in list and notify listeners
void removeWhere(bool test(T element)) {
value.removeWhere(test);
notifyListeners();
}