CustomRadioButton constructor

const CustomRadioButton({
  1. Key? key,
  2. required String text,
  3. required int value,
  4. required int groupValue,
  5. required dynamic onChange(
    1. int
    ),
})

Implementation

const CustomRadioButton(
    {super.key,
    required this.text,
    required this.value,
    required this.groupValue,
    required this.onChange});