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