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

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

Implementation

static set debugShowWidgetInspectorOverride(bool value) {
  _debugShowWidgetInspectorOverrideNotifier.value = value;
}