AppRadioButton constructor

const AppRadioButton({
  1. Key? key,
  2. required void onChanged(
    1. int?
    ),
  3. required int value,
  4. required int groupValue,
})

Implementation

const AppRadioButton({
  super.key,
  required this.onChanged,
  required this.value,
  required this.groupValue,
});