WidgetInspectorService mixin

Service used by GUI tools to interact with the WidgetInspector.

Calls to this object are typically made from GUI tools such as the Flutter IntelliJ Plugin using the Dart VM Service. This class uses its own object id and manages object lifecycles itself instead of depending on the object ids specified by the VM Service Protocol because the VM Service Protocol ids expire unpredictably. Object references are tracked in groups so that tools that clients can use dereference all objects in a group with a single operation making it easier to avoid memory leaks.

All methods in this class are appropriate to invoke from debugging tools using the VM service protocol to evaluate Dart expressions of the form WidgetInspectorService.instance.methodName(arg1, arg2, ...). If you make changes to any instance method of this class you need to verify that the Flutter IntelliJ Plugin widget inspector support still works with the changes.

All methods returning String values return JSON.

Properties

isSelectMode ValueNotifier<bool>
Whether the inspector is in select mode.
final
selection InspectorSelection
Ground truth tracking what object(s) are currently selected used by both GUI tools such as the Flutter IntelliJ Plugin and the WidgetInspector displayed on the device.
final
selectionChangedCallback InspectorSelectionChangedCallback?
Callback typically registered by the WidgetInspector to receive notifications when selection changes.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

addPubRootDirectories(List<String> pubRootDirectories) → void
Add a list of directories that should be considered part of the local project.
devToolsInspectorUri(String inspectorRef) String
Returns the DevTools inspector uri for the given vm service connection and inspector reference.
disposeAllGroups() → void
Clear all InspectorService object references.
disposeGroup(String name) → void
Free all references to objects in a group.
disposeId(String? id, String groupName) → void
Remove the object with the specified id from the specified object group.
forceRebuild() Future<void>
Cause the entire tree to be rebuilt. This is used by development tools when the application code has changed and is being hot-reloaded, to cause the widget tree to pick up any changed implementations.
getChildren(String diagnosticsNodeId, String groupName) String
Returns a JSON representation of the children of the DiagnosticsNode object that diagnosticsNodeId references.
getChildrenDetailsSubtree(String diagnosticableId, String groupName) String
Returns a JSON representation of the children of the DiagnosticsNode object that diagnosticableId references providing information needed for the details subtree view.
getChildrenSummaryTree(String diagnosticsNodeId, String groupName) String
Returns a JSON representation of the children of the DiagnosticsNode object that diagnosticsNodeId references only including children that were created directly by user code.
getDetailsSubtree(String diagnosticableId, String groupName, {int subtreeDepth = 2}) String
Returns a JSON representation of the subtree rooted at the DiagnosticsNode object that diagnosticsNodeId references providing information needed for the details subtree view.
getParentChain(String id, String groupName) String
Returns JSON representing the chain of DiagnosticsNode instances from root of the tree to the Element or RenderObject matching id.
getProperties(String diagnosticsNodeId, String groupName) String
Returns a JSON representation of the properties of the DiagnosticsNode object that diagnosticsNodeId references.
getRootWidget(String groupName) String
Returns a JSON representation of the DiagnosticsNode for the root Element.
getRootWidgetSummaryTree(String groupName) String
Returns a JSON representation of the DiagnosticsNode for the root Element showing only nodes that should be included in a summary tree.
getSelectedSummaryWidget(String? previousSelectionId, String groupName) String
Returns a DiagnosticsNode representing the currently selected Element if the selected Element should be shown in the summary tree otherwise returns the first ancestor of the selected Element shown in the summary tree.
getSelectedWidget(String? previousSelectionId, String groupName) String
Returns a DiagnosticsNode representing the currently selected Element.
initServiceExtensions(RegisterServiceExtensionCallback registerExtension) → void
Called to register service extensions.
inspect(Object? object) → void
All events dispatched by a WidgetInspectorService use this method instead of calling developer.inspect.
isStructuredErrorsEnabled() bool
Whether structured errors are enabled.
isWidgetCreationTracked() bool
Returns whether Widget creation locations are available.
isWidgetTreeReady([String? groupName]) bool
Returns whether the application has rendered its first frame and it is appropriate to display the Widget tree in the inspector.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
performReassemble() → void
This method is called by WidgetsBinding.performReassemble to flush caches of obsolete values after a hot reload.
postEvent(String eventKind, Map<Object, Object?> eventData, {String stream = 'Extension'}) → void
All events dispatched by a WidgetInspectorService use this method instead of calling developer.postEvent directly.
pubRootDirectories(Map<String, String> parameters) Future<Map<String, dynamic>>
Returns the list of directories that should be considered part of the local project.
registerServiceExtension({required String name, required ServiceExtensionCallback callback, required RegisterServiceExtensionCallback registerExtension}) → void
Registers a service extension method with the given name (full name "ext.flutter.inspector.name").
removePubRootDirectories(List<String> pubRootDirectories) → void
Remove a list of directories that should no longer be considered part of the local project.
resetAllState() → void
Reset all InspectorService state.
resetPubRootDirectories() → void
Resets the list of directories, that should be considered part of the local project, to the value passed in pubRootDirectories.
screenshot(Object? object, {required double width, required double height, double margin = 0.0, double maxPixelRatio = 1.0, bool debugPaint = false}) Future<Image?>
Captures an image of the current state of an object that is a RenderObject or Element.
setPubRootDirectories(List<String> pubRootDirectories) → void
Set the list of directories that should be considered part of the local project.
setSelection(Object? object, [String? groupName]) bool
Set the WidgetInspector selection to the specified object if it is a valid object to set as the inspector selection.
setSelectionById(String? id, [String? groupName]) bool
Set the WidgetInspector selection to the object matching the specified id if the object is valid object to set as the inspector selection.
toId(Object? object, String groupName) String?
Returns a unique id for object that will remain live at least until disposeGroup is called on groupName.
toObject(String? id, [String? groupName]) Object?
Returns the Dart object associated with a reference id.
toObjectForSourceLocation(String id, [String? groupName]) Object?
Returns the object to introspect to determine the source location of an object's class.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

instance WidgetInspectorService
The current WidgetInspectorService.
getter/setter pair

Static Methods

objectToDiagnosticsNode(Object? object) DiagnosticsNode?
If possible, returns DiagnosticsNode for the object.