showSemanticsDebugger property

bool? showSemanticsDebugger

Shows an overlay of accessibility information

Implementation

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

Implementation

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