clearChildrenIndex method

void clearChildrenIndex(
  1. INode node
)

Implementation

void clearChildrenIndex(INode node) {
  for (final childNode in node.childrenAsList) {
    _lastChildMap.remove(childNode);
  }
}