removeWhere method
- bool test(
- T element
Removes all elements that satisfy the given test.
Implementation
void removeWhere(bool Function(T element) test) => _data.removeWhere(test);
Removes all elements that satisfy the given test.
void removeWhere(bool Function(T element) test) => _data.removeWhere(test);