ohthatsa_old/lib/pages/practice/PracticeThing.dart
2020-11-01 21:48:51 +01:00

10 lines
No EOL
273 B
Dart

import 'package:flutter/material.dart';
abstract class PracticeThing {
bool answer(int answer);
void next();
List<bool> getBoolAnswers();
Text getCurrentQuestionText();
Text getLastAnswerText(bool showCorrect);
Text getSecondLastAnswerText(bool showCorrect);
}