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