MultipleChoiceAnswerFormat constructor
const
MultipleChoiceAnswerFormat({
- required List<
TextChoice> textChoices, - bool otherField = false,
- TextChoice? defaultSelection,
- String? question,
- String? answerType = type,
Implementation
const MultipleChoiceAnswerFormat({
required this.textChoices,
this.otherField = false,
this.defaultSelection,
super.question,
super.answerType = type,
}) : super();