removeWhere abstract method

dynamic removeWhere(
  1. bool test(
    1. E element
    )
)

Removes all elements in the iterable from the set

Sync CollectiveSet returns void Async CollectiveSet returns Future<void>

Implementation

removeWhere(bool Function(E element) test);