CollapsibleSection constructor

const CollapsibleSection({
  1. required String title,
  2. required Widget child,
  3. Key? key,
  4. String? description,
  5. bool initiallyExpanded = true,
})

Implementation

const CollapsibleSection({
  required this.title, required this.child, super.key,
  this.description,
  this.initiallyExpanded = true,
});