removeAt method

void removeAt(
  1. int index
)

Removes the item at the specified position.

Implementation

void removeAt(int index) {
  if ((index < 0) || (index >= count)) {
    throw RangeError('index');
  }
  _doRemove(null, index);
}