SingleChoiceAnswerFormat constructor

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

Implementation

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