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