initial commit

This commit is contained in:
2024-02-03 20:27:45 +01:00
commit e9a0204004
676 changed files with 10559 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
class QuizQuestion {
const QuizQuestion(this.text, this.answers);
final String text;
final List<String> answers;
}