showSemanticsDebugger property

  1. @Deprecated('Should not be an exposed property')
bool? get showSemanticsDebugger

Shows an overlay of accessibility information

Implementation

@Deprecated('Should not be an exposed property')
bool? get showSemanticsDebugger => appState?.showSemanticsDebugger;
  1. @Deprecated('Should not be a readily available capability')
set showSemanticsDebugger (bool? v)

Implementation

@Deprecated('Should not be a readily available capability')
set showSemanticsDebugger(bool? v) {
  if (v != null) {
    appState?.showSemanticsDebugger = v;
  }
}