void removeRange(String path, int start, int end)

Removes the objects in the range start inclusive to end exclusive from the list at path.

Source

void removeRange(String path, int start, int end) {
  jsElement.callMethod('splice', [path, start, end - start]);
}