FAccordionItem constructor
FAccordionItem({
- required Widget title,
- required Widget child,
- FAccordionStyle? style,
- bool initiallyExpanded = false,
- bool autofocus = false,
- FocusNode? focusNode,
- ValueChanged<
bool> ? onFocusChange, - Key? key,
Creates an FAccordionItem.
Implementation
FAccordionItem({
required this.title,
required this.child,
this.style,
this.initiallyExpanded = false,
this.autofocus = false,
this.focusNode,
this.onFocusChange,
super.key,
}) : icon = FIcon(FAssets.icons.chevronRight);