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