shouldShowHints property
      
      bool
      get
      shouldShowHints
      
    
    
    
Implementation
bool get shouldShowHints => _shouldShowHints;
      
      set
      shouldShowHints
      (bool newValue) 
      
    
    
    
Implementation
set shouldShowHints(bool newValue) {
  _shouldShowHints = newValue;
  _controller?.update();
}