removeWhere method - ImmutableListMixin class - dart:html library (original) (raw)

description

void removeWhere(

  1. bool test(
    1. E element
      ) )

override

Removes all objects from this list that satisfy test.

An object o satisfies test if test(o) is true.

final numbers = <String>['one', 'two', 'three', 'four'];
numbers.removeWhere((item) => item.length == 3);
print(numbers); // [three, four]

The list must be growable.

Implementation

void removeWhere(bool test(E element)) {
  throw new UnsupportedError("Cannot remove from immutable List.");
}