showSemanticsDebugger property
Shows an overlay of accessibility information
Implementation
@Deprecated('Should not be an exposed property')
bool? get showSemanticsDebugger => appState?.showSemanticsDebugger;
Implementation
@Deprecated('Should not be a readily available capability')
set showSemanticsDebugger(bool? v) {
if (v != null) {
appState?.showSemanticsDebugger = v;
}
}