MultipleChoiceAnswerFormat constructor

const MultipleChoiceAnswerFormat({
  1. required List<TextChoice> textChoices,
  2. bool otherField = false,
  3. TextChoice? defaultSelection,
  4. String? question,
  5. String? answerType = type,
})

Implementation

const MultipleChoiceAnswerFormat({
  required this.textChoices,
  this.otherField = false,
  this.defaultSelection,
  super.question,
  super.answerType = type,
}) : super();