MephistoRadioButton constructor

const MephistoRadioButton({
  1. Key? key,
  2. required String text,
  3. required Function onClick,
  4. required bool isSelected,
  5. bool? isBold = false,
})

Implementation

const MephistoRadioButton({
  super.key,
  required this.text,
  required this.onClick,
  required this.isSelected,
  this.isBold = false,
});