operator []= method

void operator []=(
  1. K key,
  2. V value
)

Implementation

void operator []=(K key, V value) => key.setIn(this, value);