removeAt abstract method
Removes the view model instance at the specified index from the list.
Example:
final list = viewModelInstance.list("list");
list.removeAt(2);
Throws a RangeError if the index is out of bounds.
Implementation
void removeAt(int index);