FPCAccentLightRadio<T> constructor

const FPCAccentLightRadio<T>({
  1. Key? key,
  2. required T value,
  3. required T? groupValue,
  4. required void onChanged(
    1. T?
    ),
  5. bool isToggleable = false,
  6. bool isDisabled = false,
  7. Color? disabledColor,
})

Implementation

const FPCAccentLightRadio({
  super.key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  this.isToggleable = false,
  this.isDisabled = false,
  this.disabledColor,
});