RadioButtons<T> constructor

const RadioButtons<T>({
  1. Key? key,
  2. required RadioButtonsController<T> controller,
  3. void inChanged(
    1. T v
    )?,
})

Implementation

const RadioButtons({
  super.key,
  required this.controller,
  this.inChanged,
});