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