removeWhere method

  1. @override
Future<void> removeWhere(
  1. bool test(
    1. E element
    )
)
override

Async removes elements from the queue that satisfy the test.

Implementation

@override
Future<void> removeWhere(bool Function(E element) test) async {
  return Future<void>(() => _collective.removeWhere(test));
}