moveCursorToEnd method

void moveCursorToEnd()

Implementation

void moveCursorToEnd() {
  _cursorPosition = _text.length;
  clearSelection();
  notifyListeners();
}