FSidebarGroup constructor

const FSidebarGroup({
  1. required List<Widget> children,
  2. FSidebarGroupStyle style(
    1. FSidebarGroupStyle
    )?,
  3. Widget? label,
  4. Widget? action,
  5. ValueChanged<bool>? onActionHoverChange,
  6. ValueChanged<FWidgetStatesDelta>? onActionStateChange,
  7. VoidCallback? onActionPress,
  8. VoidCallback? onActionLongPress,
  9. Key? key,
})

Creates a FSidebarGroup.

Implementation

const FSidebarGroup({
  required this.children,
  this.style,
  this.label,
  this.action,
  this.onActionHoverChange,
  this.onActionStateChange,
  this.onActionPress,
  this.onActionLongPress,
  super.key,
});