bulletList static method

Tree bulletList(
  1. String rootLabel
)

Creates a bullet-style list tree.

Implementation

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