remove abstract method

void remove(
  1. ViewModelInstance instance
)

Removes the specified ViewModelInstance from the list.

Example:

final list = viewModelInstance.list("list");
list.remove(instance);

Throws a RangeError if the instance is not in the list.

Implementation

void remove(ViewModelInstance instance);