stopPerformanceTracing method
Stops the performance tracing session started by startPerformanceTracing.
Implementation
Future<void> stopPerformanceTracing() async {
_checkNotManualMode();
await _requestXhr(
'/stop-performance-tracing',
method: 'POST',
mimeType: 'application/json',
);
}