HorizontalRadioGroup constructor

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

Implementation

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