Метод removeWhere
void removeWhere(Удаляет все объекты из этого списка, которые удовлетворяют test.
Объект o удовлетворяет test, если test(o) равно true.
List<String> numbers = ['one', 'two', 'three', 'four'];
numbers.removeWhere((item) => item.length == 3);
numbers.join(', '); // 'three, four'
Выбрасывает UnsupportedError, если это список фиксированной длины.
Исходный код
void removeWhere(bool test(E element)) {
_filter(test, false);
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-collection/ListMixin/removeWhere.html