moveCursorRight method

void moveCursorRight()

Move cursor right

Implementation

void moveCursorRight() {
  if (_cursorOffset < _text.length) {
    _cursorOffset++;
    _selection = null;
    notifyListeners();
  }
}