RadioButtonRow<T> constructor

const RadioButtonRow<T>({
  1. required T value,
  2. required String label,
  3. required VoidCallback? onPressed,
  4. Key? key,
  5. String? description,
  6. T? groupValue,
})

Implementation

const RadioButtonRow({
  required this.value,
  required this.label,
  required this.onPressed,
  super.key,
  this.description,
  this.groupValue,
});