debugShowWidgetInspector property

  1. @Deprecated('Should not be an exposed property')
bool get debugShowWidgetInspector
inherited

Implementation

@Deprecated('Should not be an exposed property')
bool get debugShowWidgetInspector =>
    _debugShowWidgetInspector ?? onDebugShowWidgetInspector() ?? false;
  1. @Deprecated('Should not be a readily available capability')
set debugShowWidgetInspector (bool? debug)
inherited

Implementation

@Deprecated('Should not be a readily available capability')
set debugShowWidgetInspector(bool? debug) {
  if (debug != null) {
    _debugShowWidgetInspector = debug;
  }
}