removeAt abstract method

void removeAt(
  1. int index
)

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);