addAll method

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

Implementation

void addAll(Map<K, V> other) {
  value.addAll(other);
  set(value, force: true);
}