column property

void column=(int column)

moves the cursor to the given column 1 is the first column

Implementation

// ignore: avoid_setters_without_getters
set column(int column) {
  write('${Ansi.esc}${column}G');
}