CupertinoRadioData constructor

CupertinoRadioData({
  1. Color? inactiveColor,
  2. Color? fillColor,
  3. bool? useCheckmarkStyle,
  4. Key? widgetKey,
  5. dynamic value,
  6. dynamic groupValue,
  7. ValueChanged? onChanged,
  8. bool? toggleable,
  9. Color? activeColor,
  10. Color? focusColor,
  11. FocusNode? focusNode,
  12. bool? autofocus,
})

Implementation

CupertinoRadioData({
  //Cupertino
  this.inactiveColor,
  this.fillColor,
  this.useCheckmarkStyle,
  //Common
  super.widgetKey,
  super.value,
  super.groupValue,
  super.onChanged,
  super.toggleable,
  super.activeColor,
  super.focusColor,
  super.focusNode,
  super.autofocus,
});