removeNodeAtIndex method

void removeNodeAtIndex(
  1. int i
)

Used by the Editor to remove the node at specific index.

Implementation

void removeNodeAtIndex(int i) {
  nodes.removeAt(i);
}