moveCursorLeft method

void moveCursorLeft()

Implementation

void moveCursorLeft() {
  if (_cursorPosition > 0) {
    _cursorPosition--;
    clearSelection();
    notifyListeners();
  }
}