operator []= method
Update the element at index with the new value value.
Implementation
void operator []=(int index, E? value) => this.update(index, value);
Update the element at index with the new value value.
void operator []=(int index, E? value) => this.update(index, value);