GNRadioButton constructor

const GNRadioButton({
  1. Key? key,
  2. required List<String> title,
  3. required String groupValue,
  4. dynamic onChange(
    1. String? value
    )?,
  5. required List<String> value,
  6. Color? radioButtonColor,
})

Implementation

const GNRadioButton({super.key, required this.title, required this.groupValue, this.onChange, required this.value, this.radioButtonColor});