moveCursorRight method

void moveCursorRight()

Implementation

void moveCursorRight() {
  if (_cursorPosition < _text.length) {
    _cursorPosition++;
    clearSelection();
    notifyListeners();
  }
}