cursorRight method

  1. @override
void cursorRight([
  1. int cols = 1
])
override

Moves the cursor right by cols columns.

Implementation

@override
void cursorRight([int cols = 1]) {
  if (supportsAnsi) write(Ansi.cursorRightBy(cols));
}