removeWhere 方法

void removeWhere(
  1. bool test(
    1. K key,
    2. V value
    )
)
继承的

不可变映射不支持此操作。

实现

void removeWhere(bool test(K key, V value)) {
  throw UnsupportedError("Cannot modify unmodifiable map");
}