removeAt method

view source

T removeAt (int index) inherited

Implementation

E removeAt(int index) {
  E result = this[index];
  _closeGap(index, index + 1);
  return result;
}