RadioButton constructor

const RadioButton({
  1. Key? key,
  2. double? radius,
  3. bool isActive = false,
  4. Color? color,
})

Implementation

const RadioButton({
  super.key,
  this.radius,
  this.isActive = false,
  this.color,
});