removeInstanceAt method

void removeInstanceAt(
  1. int index
)

Removes the instance at index. Instances after it shift down by one, so their indices change.

Implementation

void removeInstanceAt(int index) {
  _instances.removeAt(index);
  _boundsDirty = true;
}