moveCursorLeft method

void moveCursorLeft()

Move cursor left

Implementation

void moveCursorLeft() {
  if (_cursorOffset > 0) {
    _cursorOffset--;
    _selection = null;
    notifyListeners();
  }
}