RemoveAt method

void RemoveAt(
  1. int index
)
Removes the String at the specified position from the list. The index of the String to remove.

Implementation

void RemoveAt(int index) {
  if (index < 0 || index >= this.length) {
    throw new RangeError.range(
        index, 0, this.length, "index", "Strings.IndexIsOutOfRange");
  }

  this._items.removeAt(index);

  this.Changed();
}