moveCursorToEnd method

void moveCursorToEnd()

Moves cursor to the end.

Implementation

void moveCursorToEnd() {
  _cursorPosition = _buffer.length;
}