operator []= method

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

Implementation

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