FRadio constructor

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

Creates a FRadio.

Implementation

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