FSelectGroupItem<T>.checkbox constructor

const FSelectGroupItem<T>.checkbox({
  1. required T value,
  2. FCheckboxSelectGroupStyle? style,
  3. Widget? label,
  4. Widget? description,
  5. Widget? error,
  6. String? semanticLabel,
  7. bool enabled,
  8. bool autofocus,
  9. FocusNode? focusNode,
  10. ValueChanged<bool>? onFocusChange,
  11. Key? key,
})

Creates a checkbox wrapped in a FSelectGroupItem.

Implementation

const factory FSelectGroupItem.checkbox({
  required T value,
  FCheckboxSelectGroupStyle? style,
  Widget? label,
  Widget? description,
  Widget? error,
  String? semanticLabel,
  bool enabled,
  bool autofocus,
  FocusNode? focusNode,
  ValueChanged<bool>? onFocusChange,
  Key? key,
}) = _Checkbox<T>;