operator []= method

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

Implementation

void operator []=(K key, V value) => add(key: key, value: value);