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