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