MultipleChoiceAnswerFormat constructor

const MultipleChoiceAnswerFormat({
  1. required List<TextChoice> textChoices,
  2. List<TextChoice> defaultSelection = const [],
  3. bool otherField = false,
  4. int maxAnswers = 100,
})

Implementation

const MultipleChoiceAnswerFormat({
  required this.textChoices,
  this.defaultSelection = const [],
  this.otherField = false,
  this.maxAnswers = 100
}) : super();