debugShowWidgetInspector property
Implementation
@Deprecated('Should not be an exposed property')
bool get debugShowWidgetInspector =>
_debugShowWidgetInspector ?? onDebugShowWidgetInspector() ?? false;
- @Deprecated('Should not be a readily available capability')
inherited
Implementation
@Deprecated('Should not be a readily available capability')
set debugShowWidgetInspector(bool? debug) {
if (debug != null) {
_debugShowWidgetInspector = debug;
}
}