HorizontalRadioGroup constructor

HorizontalRadioGroup({
  1. Key? key,
  2. required SelectionController<String> controller,
  3. bool focused = false,
})

Implementation

HorizontalRadioGroup({
  super.key,
  required this.controller,
  this.focused = false,
});