MultipleChoice<T> constructor

const MultipleChoice<T>({
  1. Key? key,
  2. required Widget child,
  3. T? value,
  4. ValueChanged<T?>? onChanged,
  5. bool? enabled,
  6. bool? allowUnselect,
})

Implementation

const MultipleChoice({
  super.key,
  required this.child,
  this.value,
  this.onChanged,
  this.enabled,
  this.allowUnselect,
});