length property
Content length of this node's children.
To get number of children in this node use childCount.
Implementation
@override
int get length => _children.fold(0, (cur, node) => cur + node.length);
Content length of this node's children.
To get number of children in this node use childCount.
@override
int get length => _children.fold(0, (cur, node) => cur + node.length);