retainWhere method

  1. @override
void retainWhere(
  1. bool test(
    1. E element
    )
)
override

Removes all objects from this list that fail to satisfy test.

Implementation

@override
void retainWhere(bool Function(E element) test) =>
    _wrappedList.retainWhere(test);