1. @override
void operator []=(int index, InstanceType value)

Set an InstanceType in this set by an index.

Source

@override
void operator []=(int index, InstanceType value) {
  _innerValues[index] = value;
}