put method

MapBuilder<K, V> put(
  1. K key,
  2. V value
)

Implementation

MapBuilder<K, V> put(K key, V value) {
  _map[key] = value;
  return this;
}