ComRadio constructor

const ComRadio({
  1. Key? key,
  2. required bool value,
  3. double size = 24,
  4. Color? activeColor,
  5. Color? color,
})

Implementation

const ComRadio({
  super.key,
  required this.value,
  this.size = 24,
  this.activeColor,
  this.color,
});