childrenOf static method

List<LatexNode> childrenOf(
  1. LatexNode node
)

Gets the direct child node list of a node Delegates to the LatexNode's self-describing children() method

Implementation

static List<LatexNode> childrenOf(LatexNode node) => node.children();