RemoveAt method
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();
}