add method

void add(
  1. covariant IndexedNode value
)
override

Add a child value node to the children. The value will be inserted after the last child in the list

Implementation

void add(IndexedNode value) {
  value.parent = this;
  children.add(value);
}