removeWhere method

void removeWhere(
  1. bool test(
    1. T element
    )
)

remove element in list and notify listeners

Implementation

void removeWhere(bool test(T element)) {
  value.removeWhere(test);
  notifyListeners();
}