getTrackEventDescriptor method
Return a descriptor for all available tracing categories. Returns: Base64-encoded serialized perfetto.protos.TrackEventDescriptor protobuf message.
Implementation
Future<String> getTrackEventDescriptor() async {
var result = await _client.send('Tracing.getTrackEventDescriptor');
return result['descriptor'] as String;
}