center_cursor method
Implementation
void center_cursor({
final bool row = true,
}) {
if (row) {
final column = (columns / 2).round();
final row = (rows / 2).round();
move_cursor(row: row, column: column);
} else {
move_to_column((columns / 2).round());
}
}