MultipleAnswer<T> constructor

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

Implementation

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