既不接受三个点(...),也不接受map函数。
确切的解决方法是什么?
body: Column(
children: [
Question(questions[_questionIndex]['questionText']),
...(questions[_questionIndex]['answers'] as List<String>).map((answer){
return Answer(_answerQuestion,answer);
}).toList(),