clearWebSocketProfile method

Future<Success> clearWebSocketProfile(
  1. String isolateId
)

Clears all WebSocket profiling data.

Implementation

Future<Success> clearWebSocketProfile(String isolateId) async {
  assert(await isWebSocketProfilingAvailable(isolateId));
  return _callHelper('ext.dart.io.clearWebSocketProfile', isolateId);
}