9 lines
No EOL
231 B
Dart
9 lines
No EOL
231 B
Dart
import 'package:ohthatsa/pages/practice/PracticeType.dart';
|
|
|
|
class PracticeSetup {
|
|
final int count;
|
|
final bool showCorrect;
|
|
final PracticeType practiceType;
|
|
|
|
PracticeSetup(this.count, this.showCorrect, this.practiceType);
|
|
} |