13 lines
306 B
Dart
13 lines
306 B
Dart
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;
|
|
}
|