Indent constructor
const
Indent({
- Key? key,
- required Indentation indentation,
- required Widget child,
- required ITreeNode node,
- required int minLevelToIndent,
Implementation
const Indent({
super.key,
required this.indentation,
required this.child,
required this.node,
required this.minLevelToIndent,
});