PlatformRadio<T> constructor

PlatformRadio<T>({
  1. Key? key,
  2. Key? widgetKey,
  3. T? value,
  4. T? groupValue,
  5. ValueChanged? onChanged,
  6. bool toggleable = false,
  7. Color? activeColor,
  8. Color? fillColor,
  9. Color? focusColor,
  10. FocusNode? focusNode,
  11. bool autofocus = false,
  12. PlatformBuilder<MaterialRadioData>? material,
  13. PlatformBuilder<CupertinoRadioData>? cupertino,
})

Implementation

PlatformRadio({
  super.key,
  this.widgetKey,
  this.value,
  this.groupValue,
  this.onChanged,
  this.toggleable = false,
  this.activeColor,
  this.fillColor,
  this.focusColor,
  this.focusNode,
  this.autofocus = false,
  this.material,
  this.cupertino,
});