addAll method

void addAll (Map<String, String> other)

Implementation

void addAll(Map<String, String> other) {
  other.forEach((k, v) {
    this[k] = v;
  });
}