retainWhere method
Refer to List.retainWhere.
Additionally returns the list.
Implementation
Future<List<E>> retainWhere(bool test(E e)) async {
return (await this)..retainWhere(test);
}
Refer to List.retainWhere.
Additionally returns the list.
Future<List<E>> retainWhere(bool test(E e)) async {
return (await this)..retainWhere(test);
}