removeWhere method

void removeWhere (bool test(String element))
override

Removes all elements of this set that satisfy test.

Implementation

void removeWhere(bool test(String element)) => _inner.removeWhere(test);