move_cursor method
Implementation
void move_cursor({
final int? row,
final int? column,
}) {
String out = '';
if (row != null) {
out += row.toString();
}
out += ';';
if (column != null) {
out += column.toString();
}
write_ansi('${out}H');
}