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