rootChildren property

List<Node> get rootChildren

Implementation

List<Node> get rootChildren => nodes.values
    .where((node) => node.parentId == rootNodeId)
    .toList(growable: false);