ExpansionIndicator constructor

ExpansionIndicator({
  1. Key? key,
  2. required ITreeNode tree,
  3. Alignment alignment = Alignment.topRight,
  4. EdgeInsets padding = EdgeInsets.zero,
  5. Curve curve = Curves.easeOut,
  6. Color? color,
})

Implementation

ExpansionIndicator({
  super.key,
  required this.tree,
  this.alignment = Alignment.topRight,
  this.padding = EdgeInsets.zero,
  this.curve = Curves.easeOut,
  this.color,
});