ExpandedSection constructor

const ExpandedSection({
  1. Key? key,
  2. bool expand = false,
  3. required Widget child,
})

Implementation

const ExpandedSection({Key? key, this.expand = false, required this.child})
    : super(key: key);