MRadioItemWidget constructor

const MRadioItemWidget({
  1. Key? key,
  2. String? title,
  3. Widget? child,
  4. TextStyle? titleStyle,
  5. int? value,
  6. int? groupValue,
  7. FontWeight? fontWeight,
  8. bool selected = false,
  9. Color fontColor = Colors.black,
  10. double fontSize = FoontSize.font20,
})

Implementation

const MRadioItemWidget({
  Key? key,
  this.title,
  this.child,
  this.titleStyle,
  this.value,
  this.groupValue,
  this.fontWeight,
  this.selected = false,
  this.fontColor = Colors.black,
  this.fontSize = FoontSize.font20,
}) : super(key: key);