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;
}