PlatformRadio<T> constructor

const PlatformRadio<T>({
  1. Key? key,
  2. required T value,
  3. required T groupValue,
  4. required ValueChanged<T?> onChanged,
  5. Color? activeColor,
  6. Color? cupertinoActiveColor,
})

Implementation

const PlatformRadio({
  super.key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  this.activeColor,
  this.cupertinoActiveColor,
});