PlusMinusIndicator constructor

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

Implementation

PlusMinusIndicator({
  required ITreeNode tree,
  Key? key,
  Alignment alignment = Alignment.topRight,
  EdgeInsets padding = EdgeInsets.zero,
  Curve curve = Curves.ease,
  Color? color,
}) : super(
        key: key,
        tree: tree,
        alignment: alignment,
        padding: padding,
        curve: curve,
        color: color,
      );