retainWhere method
Implementation
void retainWhere(bool Function(T) test) {
final temp = List<T>.from(value);
temp.retainWhere(test);
value = temp;
}
void retainWhere(bool Function(T) test) {
final temp = List<T>.from(value);
temp.retainWhere(test);
value = temp;
}