We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffbd9fb commit f4edfbaCopy full SHA for f4edfba
1 file changed
lib/exercise_datamodel.dart
@@ -22,6 +22,7 @@ class ExerciseDatamodel {
22
String solution;
23
int difficultyLevel;
24
String hint;
25
+ bool isSelected;
26
27
ExerciseDatamodel({
28
required this.id,
@@ -31,5 +32,6 @@ class ExerciseDatamodel {
31
32
required this.solution,
33
required this.difficultyLevel,
34
this.hint = "No hint available.",
35
+ this.isSelected = false,
36
});
37
}
0 commit comments