operator []= method

void operator []=(index, E value)

Sets the value associated with property on the proxied JavaScript object.

The type of property must be either String or num.

Source

void operator []=(index, E value) {
  if (index is int) {
    _checkIndex(index);
  }
  super[index] = value;
}

© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-js/JSArray/operator_put.html