row property

int get row

Returns the row location of the cursor. The first row is row 0.

Implementation

int get row => _cursor?.row ?? 24;
set row (int row)

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

Implementation

set row(int row) {
  _console.cursorPosition = Coordinate(row, column);
}