removeWhere method
Removes all elements that match test.
Implementation
void removeWhere(bool Function(T) test) =>
value = value.where((e) => !test(e)).toList();
Removes all elements that match test.
void removeWhere(bool Function(T) test) =>
value = value.where((e) => !test(e)).toList();