RadioButton constructor

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

Implementation

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