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