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]);
}
Removes the item at index
from the list at path
. Returns the removed
element.
dynamic removeAt(String path, int index) {
return convertToDart(jsElement.callMethod('splice', [path, index, 1])[0]);
}