operator []= method

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

Sets the entry at the given index in the list to value. Throws an IndexOutOfRangeException if index is out of bounds.

Implementation

@override
void operator []=(int index, E value) {
  check(value);
  _wrappedList[index] = value;
}