TreeConfiguration constructor

TreeConfiguration({
  1. TextStyle titleStyle = const TextStyle(),
  2. double nodeHeight = 36,
  3. Widget prefixIcon = const Icon(Icons.arrow_drop_up),
  4. Duration animatedDuration = const Duration(milliseconds: 150),
  5. bool showCheckbox = true,
  6. bool animatePrefixIcon = true,
})

Implementation

TreeConfiguration({
  this.titleStyle = const TextStyle(),
  this.nodeHeight = 36,
  this.prefixIcon = const Icon(Icons.arrow_drop_up),
  this.animatedDuration = const Duration(milliseconds: 150),
  this.showCheckbox = true,
  this.animatePrefixIcon = true,
});