SingleChoiceAnswerFormat constructor

const SingleChoiceAnswerFormat({
  1. required List<TextChoice> textChoices,
  2. TextChoice? defaultSelection,
})

Implementation

const SingleChoiceAnswerFormat({
  required this.textChoices,
  this.defaultSelection,
}) : super();