operator []= method

void operator []=(
  1. K k,
  2. V v
)

Set the value of entry with key k to v in the Map held in this cell.

NOTE: The actual map is not modified but a map list is created.

Implementation

void operator []=(K k, V v) => value = _updatedMap(value, k, v);