column property

int column

Returns the column location of the cursor

Implementation

int get column => _cursor?.col ?? 0;
void column=(int column)

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

Implementation

// ignore: avoid_setters_without_getters
set column(int column) {
  _console.cursorPosition = Coordinate(row, 0);
}