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]);
}
Removes the objects in the range start
inclusive to end
exclusive from
the list at path
.
void removeRange(String path, int start, int end) {
jsElement.callMethod('splice', [path, start, end - start]);
}