dynamic removeAt(String path, int index)

Removes the item at index from the list at path. Returns the removed element.

Source

dynamic removeAt(String path, int index) {
  return convertToDart(jsElement.callMethod('splice', [path, index, 1])[0]);
}