ExpandableSection constructor

const ExpandableSection({
  1. required String title,
  2. Widget? child,
  3. Key? key,
})

Implementation

const ExpandableSection({
  required this.title,
  this.child,
  Key? key,
}) : super(key: key);