Indent constructor

const Indent({
  1. Key? key,
  2. required Indentation indentation,
  3. required Widget child,
  4. required ITreeNode node,
  5. required int minLevelToIndent,
})

Implementation

const Indent({
  super.key,
  required this.indentation,
  required this.child,
  required this.node,
  required this.minLevelToIndent,
});