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