addAll method

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

Implementation

void addAll(Map<K, V> map) {
  value.addAll(map);
  refresh();
}