QuestionsScreen constructor

const QuestionsScreen({
  1. required QuizRepo quizRepo,
  2. Key? key,
})

Implementation

const QuestionsScreen({
  required this.quizRepo,
  Key? key,
}) : super(key: key);