Sets the value associated with property on the proxied JavaScript object.
property
The type of property must be either String or num.
void operator []=(index, E value) { if (index is int) { _checkIndex(index); } super[index] = value; }