sendDebuggerUris method

void sendDebuggerUris(
  1. Uri uri
)

Implementation

void sendDebuggerUris(Uri uri) {
  // Send a custom event with the VM Service URI as the editor might want to
  // know about this (for example so it can connect an embedded DevTools to
  // this app).
  sendEvent(
    RawEventBody({
      'vmServiceUri': uri.toString(),
    }),
    eventType: 'dart.debuggerUris',
  );
}