TreeEnumerator constructor

const TreeEnumerator({
  1. required String pipe,
  2. required String tee,
  3. required String elbow,
  4. required String dash,
  5. String indent = ' ',
})

Creates a tree enumerator with the specified characters.

Implementation

const TreeEnumerator({
  required this.pipe,
  required this.tee,
  required this.elbow,
  required this.dash,
  this.indent = '   ',
});