I am doing "The Complete Flutter Development Bootcamp with Dart", and when I am getting the error below:
lib/main.dart:47:42: Error: Too few positional arguments: 1 required, 0 given. quizBrain.getQuestionText(),
I have copied and pasted the relevant widget below:
Expanded(
flex: 5,
child: Padding(
padding: EdgeInsets.all(10.0),
child: Center(
child: Text(
quizBrain.getQuestionText(),
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 25.0,
color: Colors.white,
),
),
),
),
),
I have looked online for a solution but can't find anything.
Your
quizBrain.getQuestionText()
requires a arguments to be passed. Check it's definition and provide the argument.