descendantCount property

int get descendantCount

Implementation

int get descendantCount => children.fold(children.length, (int total, UDocOutlineNode child) => total + child.descendantCount);