showSemanticsDebugger property
      
      bool?
      get
      showSemanticsDebugger
      
    
    
Shows an overlay of accessibility information
Implementation
static bool? get showSemanticsDebugger => _appState?.showSemanticsDebugger;
      
      set
      showSemanticsDebugger
      (bool? v) 
      
    
    
    
Implementation
static set showSemanticsDebugger(bool? v) {
  if (v != null) {
    _appState?.showSemanticsDebugger = v;
  }
}