pollTypeQuiz property
A poll in quiz mode, which has exactly one correct answer option and can be answered only once
Implementation
PollTypeQuiz? get pollTypeQuiz {
if (this is PollTypeQuiz) {
return this as PollTypeQuiz;
}
return null;
}