ExpandableNodeContainer<T> constructor

const ExpandableNodeContainer<T>({
  1. Key? key,
  2. required Animation<double> animation,
  3. required ValueSetter<ITreeNode<T>>? onTap,
  4. required Widget child,
  5. required ITreeNode<T> node,
  6. required Indentation indentation,
  7. required int minLevelToIndent,
  8. ExpansionIndicator? expansionIndicator,
})

Implementation

const ExpandableNodeContainer({
  super.key,
  required this.animation,
  required this.onTap,
  required this.child,
  required this.node,
  required this.indentation,
  required this.minLevelToIndent,
  this.expansionIndicator,
});