ctrlKey property
      
      bool?
      get
      ctrlKey
      
    
    
Whether or not the CTRL key is pressed.
Implementation
bool? get ctrlKey => _wrapped.ctrlKey;
      
      set
      ctrlKey
      (bool? v) 
      
    
    
    
Implementation
set ctrlKey(bool? v) {
  _wrapped.ctrlKey = v;
}