TreeIndentation constructor

const TreeIndentation({
  1. Key? key,
  2. required Widget child,
  3. required TreeEntry<Object> entry,
  4. IndentGuide? guide,
})

Creates a TreeIndentation.

If guide is not provided, DefaultIndentGuide.of will be used instead.

Implementation

const TreeIndentation({
  super.key,
  required this.child,
  required this.entry,
  this.guide,
});