sendEventToFrontend method

  1. @override
void sendEventToFrontend(
  1. InspectorEvent event
)

Implementation

@override
void sendEventToFrontend(InspectorEvent event) {
  // For the unified service, send directly through the service
  if (devtoolsService is ChromeDevToolsService) {
    ChromeDevToolsService.unifiedService.sendEventToFrontend(event);
  }
}