write_centered method
Implementation
void write_centered(
final String text,
) {
final column = ((console.columns / 2) - (text.length / 2)).round();
final row = (console.rows / 2).round();
console.move_cursor(row: row, column: column);
console.raw_console.write(text);
}