removeAt method

E removeAt (int index)

Implementation

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