toggleCaps method

void toggleCaps()

Implementation

void toggleCaps() {
  _isShiftPressed = false;
  _isCapsOn = !_isCapsOn;
  notifyListeners();
}