streamCpuSamplesWithUserTag method

Future<Success> streamCpuSamplesWithUserTag(
  1. List<String> userTags
)

The streamCpuSamplesWithUserTag RPC allows for clients to specify which CPU samples collected by the profiler should be sent over the Profiler stream. When called, the VM will stream CpuSamples events containing CpuSample's collected while a user tag contained in userTags was active.

See Success.

Implementation

Future<Success> streamCpuSamplesWithUserTag(List<String> userTags) =>
    _call('streamCpuSamplesWithUserTag', {'userTags': userTags});