ohthatsa_old/lib/pages/practice/PracticeSetup.dart
2020-10-25 16:40:30 +01:00

6 lines
No EOL
116 B
Dart

class PracticeSetup {
final int count;
final bool showCorrect;
PracticeSetup(this.count, this.showCorrect);
}