SharedExpandingSection constructor
const
SharedExpandingSection({ - Key? key,
- EdgeInsets? contentPadding,
- Widget? leading,
- required Widget title,
- TextStyle? titleTextSize,
- required List<Widget> children,
- Widget? divider,
- bool disabled = false,
- bool isInitiallyExpanded = false,
- 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,
});