removeInstanceAt method
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;
}
Removes the instance at index. Instances after it shift down by
one, so their indices change.
void removeInstanceAt(int index) {
_instances.removeAt(index);
_boundsDirty = true;
}