ExpandCollapseButton constructor

const ExpandCollapseButton({
  1. Key? key,
  2. required bool isExpanded,
  3. required ValueChanged<bool> onTap,
})

Implementation

const ExpandCollapseButton({
  super.key,
  required this.isExpanded,
  required this.onTap,
});