column property

int get column

Returns the column location of the cursor

Implementation

int get column => _cursor?.col ?? 0;
set 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);
}