FRadio constructor

const FRadio({
  1. FRadioStyle? style,
  2. Widget? label,
  3. Widget? description,
  4. Widget? error,
  5. String? semanticLabel,
  6. bool value = false,
  7. ValueChanged<bool>? onChange,
  8. bool enabled = true,
  9. bool autofocus = false,
  10. FocusNode? focusNode,
  11. ValueChanged<bool>? onFocusChange,
  12. Key? key,
})

Creates a FRadio.

Implementation

const FRadio({
  this.style,
  this.label,
  this.description,
  this.error,
  this.semanticLabel,
  this.value = false,
  this.onChange,
  this.enabled = true,
  this.autofocus = false,
  this.focusNode,
  this.onFocusChange,
  super.key,
});