SharedExpandingSection constructor

const SharedExpandingSection({
  1. Key? key,
  2. EdgeInsets? contentPadding,
  3. Widget? leading,
  4. required Widget title,
  5. TextStyle? titleTextSize,
  6. required List<Widget> children,
  7. Widget? divider,
  8. bool disabled = false,
  9. bool isInitiallyExpanded = false,
  10. ValueNotifier<bool>? controller,
})

Implementation

const SharedExpandingSection({
  super.key,
  this.contentPadding,
  this.leading,
  required this.title,
  this.titleTextSize,
  required this.children,
  this.divider,
  this.disabled = false,
  this.isInitiallyExpanded = false,
  this.controller,
});