Collapsible constructor

const Collapsible({
  1. Key? key,
  2. required List<Widget> children,
  3. bool? isExpanded,
  4. ValueChanged<bool>? onExpansionChanged,
})

Implementation

const Collapsible({
  super.key,
  required this.children,
  this.isExpanded,
  this.onExpansionChanged,
});