moveRight method

void moveRight([
  1. int n = 1
])

Moves the cursor right n cells.

Implementation

void moveRight([int n = 1]) => write(ansi.Cursor.moveRight(n));