addAll方法

void addAll(
  1. Map<K, V> other
)
override

将其他map的所有键值对添加到这个map中。

如果other中的键已经存在于这个map中,其值将被覆盖。

该操作等同于对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<K, V> other) {
  other.forEach((K key, V value) {
    this[key] = value;
  });
}