CLCollapsible constructor

const CLCollapsible({
  1. Key? key,
  2. required String title,
  3. required Widget child,
  4. bool initiallyExpanded = false,
  5. Widget? leading,
})

Implementation

const CLCollapsible({
  super.key,
  required this.title,
  required this.child,
  this.initiallyExpanded = false,
  this.leading,
});