removeWhere abstract method

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

Removes all elements that satisfy the test condition.

Sync CollectiveQueue returns void Async CollectiveQueue returns Future<void>

Implementation

removeWhere(bool Function(E element) test);