我正在尝试开发一个测验应用程序并遇到这个问题:
The argument type 'void Function(int)' can't be assigned to the parameter type 'void Function()'
.
dartargument_type_not_assignable void _answerques(int 分数) 包:practice/main.dart
在您的小部件中,使用以下签名声明问题函数:
void Function(int) answerQues;
因此,
_answerques
功能可分配给此签名。