import 'dart:math'; import 'package:flutter/material.dart'; import 'package:ohthatsa/pages/practice/PracticeAnswer.dart'; abstract class PracticeThing { final random = Random(); final List answers = new List(); bool isCorrect(int answer); bool answer(int answer); void next(); List getBoolAnswers(); Text getAppBarTitleText(); Text getCurrentQuestionText(); Text getLastAnswerText(bool showCorrect); Text getSecondLastAnswerText(bool showCorrect); }