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