retainWhere method
- bool test(
- T element
Retains only the elements that satisfy the given test.
Implementation
void retainWhere(bool Function(T element) test) => _data.retainWhere(test);
Retains only the elements that satisfy the given test.
void retainWhere(bool Function(T element) test) => _data.retainWhere(test);