remove 方法

String remove(
  1. dynamic key
)
override

如果存在,从映射中移除 key 和其关联的值。

返回移除 key 之前的关联值。如果 key 不在映射中,返回 null

注意,某些映射允许使用 null 作为值,因此返回的 null 值不一定意味着键不存在。

final terrestrial = <int, String>{1: 'Mercury', 2: 'Venus', 3: 'Earth'};
final removedValue = terrestrial.remove(2); // Venus
print(terrestrial); // {1: Mercury, 3: Earth}

实现

String remove(dynamic key) {
  throw new UnsupportedError("Not supported");
}