inspect method

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

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

@override
void inspect(final Object? object) {
  super.inspect(object);
}