clearSocketProfile method

Future<Success> clearSocketProfile(
  1. String isolateId
)

Removes all statistics associated with prior and current sockets.

Implementation

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