skip to Main Content

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.

2

Answers


  1. Your quizBrain.getQuestionText() requires a arguments to be passed. Check it’s definition and provide the argument.

    Login or Signup to reply.
  2. 1 positional argument is required and you are passing no argument.

                quizBrain.getQuestionText(yourArgument),
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search