FRadioButton<T> constructor

const FRadioButton<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. required ValueChanged<T?>? onChanged,
  5. bool enabled = true,
  6. FTextStyle? fTextStyle,
  7. String? label,
  8. FColorI? fColor,
  9. double? radioHeight,
  10. double? radioWidth,
  11. FColorI? fColorDisabled,
})

Implementation

const FRadioButton({
  Key? key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  this.enabled = true,
  this.fTextStyle,
  this.label,
  this.fColor,
  this.radioHeight,
  this.radioWidth,
  this.fColorDisabled,
}) : super(key: key);