ExpandNodeIcon constructor

const ExpandNodeIcon({
  1. Key? key,
  2. double size = 24.0,
  3. EdgeInsetsGeometry padding = const EdgeInsets.all(8.0),
  4. Color? color,
  5. Color? disabledColor,
  6. Color? expandedColor,
})

Creates an ExpandNodeIcon.

Implementation

const ExpandNodeIcon({
  Key? key,
  this.size = 24.0,
  this.padding = const EdgeInsets.all(8.0),
  this.color,
  this.disabledColor,
  this.expandedColor,
}) : super(key: key);