merge method

Map<K, V> merge(
  1. Map<K, V> other
)

Implementation

Map<K, V> merge(Map<K, V> other) => {...this}..addEntries(
    other.entries,
  );