MoveCursorToColumn constructor
- [int column = 1]
Creates a move cursor to column command.
The column
must be positive.
Implementation
const MoveCursorToColumn([
int column = 1,
]) : column = column < 1 ? 1 : column;
Creates a move cursor to column command.
The column
must be positive.
const MoveCursorToColumn([
int column = 1,
]) : column = column < 1 ? 1 : column;