retainWhere method

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

Implementation

void retainWhere(bool Function(T element) test) {
  _value.retainWhere(test);
  update();
}