cursorToColumn method

  1. @override
void cursorToColumn(
  1. int col
)
override

Moves the cursor to the specified col on the current line (1-based).

Implementation

@override
void cursorToColumn(int col) {
  if (supportsAnsi) write(Ansi.cursorToColumn(col));
}