23

Use ; instead of {} for empty constructor bodies.dart(empty_constructor_bodies) A function body must be provided. Try adding a function body.dart(missing_function_body)

import 'package:flutter/material.dart';
import './question.dart';
import './answer.dart';

class Quiz extends StatelessWidget {
  final int questionIndex;
  final List<Map<String, Object>> questions;
  final Function answerQuestion;

  Quiz(this.questionIndex,this.questions,this.answerQuestion)

  @override

  Widget build(BuildContext context) {
    return Column(
                children: [
                  Question(
                    questions[questionIndex]['questionText'],
                  ),
                  ...(questions[questionIndex]['answers'] as List<String>)
                      .map((answer) {
                    return Answer(answerQuestion, answer);
                  }).toList()
                ],
              );
  }
}

image

Can
  • 1,646
  • 9
  • 13
S A Saharukh
  • 378
  • 1
  • 4
  • 11

1 Answers1

95

You need to add a ; at the end of the constructor:

Quiz(this.questionIndex,this.questions,this.answerQuestion);
Pablo Barrera
  • 10,387
  • 3
  • 28
  • 49