startOfLine method

void startOfLine()

Moves the cursor to the start of line.

Implementation

// ignore: avoid_setters_without_getters
void startOfLine() {
  column = 1;
}