showSemanticsDebugger property

bool? showSemanticsDebugger

Shows an overlay of accessibility information

Implementation

bool? get showSemanticsDebugger => appState?.showSemanticsDebugger;
void showSemanticsDebugger=(bool? v)

Implementation

set showSemanticsDebugger(bool? v) {
  if (v != null) {
    appState?.showSemanticsDebugger = v;
  }
}