instanceAt abstract method
Returns the view model instance at the specified index in the list.
Example:
final list = viewModelInstance.list("list");
final instance = list.instanceAt(2);
Throws a RangeError if the index is out of bounds.
Implementation
ViewModelInstance instanceAt(int index);