operator []= method

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

Replaces the value of a key that already exists in the map. However, if the key is not already present, this will throw an error.

Implementation

@override
void operator []=(K key, V? value) {
  // TODO: Implement
  throw UnsupportedError("This is not yet supported, but will be in the future.");
}