MultipleChoiceQuestion.fromJson constructor
MultipleChoiceQuestion.fromJson(
- Map json_
Implementation
MultipleChoiceQuestion.fromJson(core.Map json_)
: this(
choices: (json_['choices'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);