inspect method

  1. @protected
void inspect(
  1. Object? object
)

All events dispatched by a WidgetInspectorService use this method instead of calling developer.inspect.

This allows tests for WidgetInspectorService to track which events were dispatched by overriding this method.

Implementation

@protected
void inspect(Object? object) {
  developer.inspect(object);
}