addQuestions method
void
addQuestions(})
Same as addQuestion but you can add multiple questions (of the same type)
Implementation
void addQuestions(
Iterable<dynamic> pQuestions, {
bool isBoolean = false,
bool isList = false,
bool isMessage = false,
}) {
if (isBoolean) {
booleanQuestions!.addAll(pQuestions);
} else if (isList) {
listQuestions!.addAll(pQuestions);
} else if (isMessage) {
messages!.addAll(pQuestions);
} else {
questions!.addAll(pQuestions);
}
}