operator []= method

  1. @override
void operator []=(
  1. K1? key,
  2. SunnyObservableMap<K, V>? value
)
override

Associates the key with the given value.

If the key was already in the map, its associated value is changed. Otherwise the key/value pair is added to the map.

Implementation

@override
void operator []=(K1? key, SunnyObservableMap<K, V>? value) => illegalState("No direct updates are possible for this "
    "map. You must use the get operations instead");