debugShowWidgetInspectorOverride property

bool debugShowWidgetInspectorOverride

If true, forces the widget inspector to be visible.

Overrides the debugShowWidgetInspector value set in WidgetsApp.

Used by the debugShowWidgetInspector debugging extension.

The inspector allows the selection of a location on your device or emulator and view what widgets and render objects associated with it. An outline of the selected widget and some summary information is shown on device and more detailed information is shown in the IDE or DevTools.

Implementation

bool get debugShowWidgetInspectorOverride {
  return debugShowWidgetInspectorOverrideNotifier.value;
}
void debugShowWidgetInspectorOverride=(bool value)

Implementation

set debugShowWidgetInspectorOverride(bool value) {
  debugShowWidgetInspectorOverrideNotifier.value = value;
}