我在Flutter中遇到了NoSuchMethod错误

时间:2020-04-02 08:56:30

标签: android android-studio flutter dart

this error comes when i run app 1

children: [
        Question(
          question[_questionindex]['questionText'],
        ),
        ...(question[_questionindex]['answers'] as List<String>)
            .map((answer) {
          return Answer(_answer, answer);
        }).toList()
      ], 

注释(答案是班级名称) 它没有在编辑器中显示错误,但是当我运行它时,我在模拟器中得到了这个错误 我是 Flutter dart 的初学者,还在学习 请帮我解决这个问题,我将在2天之内解决它,也无法在Google上找到它

0 个答案:

没有答案