Вот мой код:
import 'package:dart_console/dart_console.dart';
class Init extends ConsoleViewModel {
String title;
//Console
Console console;
Init(Console aConsole) {
console = aConsole;
this.redraw();
}
redraw() {
console.clearScreen();
console.setBackgroundColor(ConsoleColor.blue);
console.setForegroundColor(ConsoleColor.white);
console.writeLine(title, TextAlignment.center);
console.resetColorAttributes();
console.writeLine();
}
}
Я могу изменить заголовок и постоянно вызывать перерисовку, но возможно ли, чтобы он вызывал перерисовку автоматически, а не вручную? Спасибо.