addAll method

void addAll(
  1. Map<String, String> other
)

Calls Map.addAll on the underlying map.

Implementation

void addAll(Map<String, String> other) => _map.addAll(other);