FSelectGroupItem<T>.radio constructor

const FSelectGroupItem<T>.radio({
  1. required T value,
  2. FRadioSelectGroupStyle? 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 radio button wrapped in a FSelectGroupItem.

Implementation

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