OudsRadioButton<T> constructor

const OudsRadioButton<T>({
  1. Key? key,
  2. required T value,
  3. required T groupValue,
  4. required ValueChanged<T?>? onChanged,
  5. bool isError = false,
})

Implementation

const OudsRadioButton({
  super.key,
  required this.value,
  required this.groupValue,
  required this.onChanged,
  this.isError = false,
});