removeWhere method
Async removes elements from the queue that satisfy the test
.
Implementation
@override
Future<void> removeWhere(bool Function(E element) test) {
return Future<void>(() => throw UnsupportedError('Unmodifiable operation'));
}
Async removes elements from the queue that satisfy the test
.
@override
Future<void> removeWhere(bool Function(E element) test) {
return Future<void>(() => throw UnsupportedError('Unmodifiable operation'));
}