blob: 0e8b16b761fcebe2206b2a164bffd7c5354b265b [file] [log] [blame]
import 'dart:async';
void main() async {}
class Node {
final List<Node>? nested;
final String name;
Node(this.name, [this.nested]) {}
String toString() => '<$name:[${nested?.join(', ')}]>';
toSimpleString() {}
}