putAll method

MapBuilder<K, V> putAll(
  1. Map<K, V>? map
)

Implementation

MapBuilder<K, V> putAll(Map<K, V>? map) {
  if (map != null) _map.addAll(map);
  return this;
}