retainWhere 方法

void retainWhere(
  1. bool test(
    1. E element
    )
)
继承自

不可修改的列表不支持此操作。

实现

void retainWhere(bool test(E element)) {
  throw new UnsupportedError("Cannot remove from an unmodifiable list");
}