remove 方法

V? remove(
  1. Object? key
)
继承

不可变地图不支持此操作。

实现

V? remove(Object? key) {
  throw UnsupportedError("Cannot modify unmodifiable map");
}