import 'incoming_question.dart'; /// Outcome of deferring (skipping) a question to the back of the FIFO queue. class QuestionDeferResult { const QuestionDeferResult({ required this.unansweredCount, this.nextQuestion, }); final int unansweredCount; final IncomingQuestion? nextQuestion; }