add method

void add(
  1. TreeMapNode node
)
inherited

Implementation

void add(T node) {
  node.parent = this as T;
  _childrenList.add(node);
}