rounded static method

Tree rounded(
  1. String rootLabel
)

Creates a rounded tree.

Implementation

static Tree rounded(String rootLabel) {
  return Tree()
    ..root(rootLabel)
    ..enumerator(TreeEnumerator.rounded);
}