toStringTree method
Print out a whole tree, not just a node, in LISP format (root child1 .. childN). Print just a node if this is a leaf.
Implementation
@override
String toStringTree({List<String>? ruleNames, Parser? parser}) {
return Trees.toStringTree(this, ruleNames: ruleNames, recog: parser);
}