moveCursorLeft method
void
moveCursorLeft()
Moves the cursor one character to the left.
Implementation
void moveCursorLeft() {
if (_cursorPosition > 0) {
_cursorPosition--;
clearSelection();
notifyListeners();
}
}