Метод operator []=
void operator []=(Устанавливает значение, связанное с property на прокси-объекте JavaScript.
Тип property должен быть либо String, либо num.
Исходный код
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