addAll 方法

void addAll(
  1. Map<String, dynamic> other
)
override

other 中的所有键值对添加到此映射中。

如果 other 中的键已在此映射中存在,则其值将被覆盖。

此操作等同于对 other 中的每个键及其相关值执行 this[key] = value。它遍历 other,因此在此迭代过程中 other 不应发生变化。

final planets = <int, String>{1: 'Mercury', 2: 'Earth'};
planets.addAll({5: 'Jupiter', 6: 'Saturn'});
print(planets); // {1: Mercury, 2: Earth, 5: Jupiter, 6: Saturn}

实现

void addAll(Map<String, dynamic> other) {
  throw new UnsupportedError("Not supported");
}