16 lines
388 B
Dart
16 lines
388 B
Dart
import 'guess_score_summary.dart';
|
|
import 'incoming_question.dart';
|
|
|
|
/// Outcome of resetting guess score and clearing guess-game progress.
|
|
class GuessScoreResetResult {
|
|
const GuessScoreResetResult({
|
|
required this.score,
|
|
required this.unansweredCount,
|
|
this.question,
|
|
});
|
|
|
|
final GuessScoreSummary score;
|
|
final int unansweredCount;
|
|
final IncomingQuestion? question;
|
|
}
|