ExpandableIcon constructor

const ExpandableIcon({
  1. Key? key,
  2. required Widget child,
  3. bool? expanded,
  4. ValueChanged<bool>? onExpandChanged,
})

Implementation

const ExpandableIcon(
    {Key? key, required this.child, this.expanded, this.onExpandChanged})
    : super(key: key);