RemoveAt method

void RemoveAt(
  1. int index
)
Removes an attendee from the collection. The index of the attendee to remove.

Implementation

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

  this.InternalRemoveAt(index);
}