grouped<T> static method
FSelectGroupItem<T>
grouped<T>({
- required T value,
- FCheckboxStyle? style,
- Widget? label,
- Widget? description,
- Widget? error,
- String? semanticsLabel,
- bool enabled = true,
- bool autofocus = false,
- FocusNode? focusNode,
- ValueChanged<
bool> ? onFocusChange,
Creates a FCheckbox that is part of a FSelectGroup.
Implementation
static FSelectGroupItem<T> grouped<T>({
required T value,
FCheckboxStyle? style,
Widget? label,
Widget? description,
Widget? error,
String? semanticsLabel,
bool enabled = true,
bool autofocus = false,
FocusNode? focusNode,
ValueChanged<bool>? onFocusChange,
}) => _Checkbox(
value: value,
style: style,
label: label,
description: description,
error: error,
semanticsLabel: semanticsLabel,
enabled: enabled,
autofocus: autofocus,
focusNode: focusNode,
onFocusChange: onFocusChange,
);