stop method
Stops tracing and flushes tracing data to the specified output stream. The data is sent to the specified output stream in json format typically in chunks.
Returns false if the WebView framework was not tracing at the time of the call,
true otherwise.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - TracingController.stop)
Implementation
Future<bool> stop({String? filePath}) {
throw UnimplementedError('stop is not implemented on the current platform');
}