FxRadio<T> constructor

const FxRadio<T>({
  1. required T groupValue,
  2. required T value,
  3. required ValueChanged<T> onChanged,
  4. Key? key,
  5. double? size,
  6. Color? activeColor,
  7. Color? borderColor,
})

Constructs an FxRadio.

Implementation

const FxRadio({
  required this.groupValue,
  required this.value,
  required this.onChanged,
  super.key,
  this.size,
  this.activeColor,
  this.borderColor,
});