grouped<T> static method

FSelectGroupItem<T> grouped<T>({
  1. required T value,
  2. FCheckboxStyle? style,
  3. Widget? label,
  4. Widget? description,
  5. Widget? error,
  6. String? semanticsLabel,
  7. bool enabled = true,
  8. bool autofocus = false,
  9. FocusNode? focusNode,
  10. 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,
);