E removeAt(int index)

Source

E removeAt(int index) {
  _checkIndex(index);
  return callMethod('splice', [index, 1])[0];
}