18 lines
364 B
Dart
18 lines
364 B
Dart
|
|
import 'package:copy_with_extension/copy_with_extension.dart';
|
||
|
|
import 'package:mnemo_cards_common/mnemo_cards_common.dart';
|
||
|
|
|
||
|
|
part 'test_question_state.g.dart';
|
||
|
|
|
||
|
|
@CopyWith()
|
||
|
|
class TestQuestionState {
|
||
|
|
final TestQuestionType testType;
|
||
|
|
|
||
|
|
bool get isCorrect => false;
|
||
|
|
|
||
|
|
bool get isAnswered => false;
|
||
|
|
|
||
|
|
const TestQuestionState({
|
||
|
|
required this.testType,
|
||
|
|
});
|
||
|
|
}
|