RadioButton<T> constructor

const RadioButton<T>(
  1. {Key? key,
  2. required T value,
  3. required String label,
  4. T? groupValue,
  5. void onChanged(
    1. T?
    )?}
)

Implementation

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