isTracing method
- @SupportedPlatforms.new(platforms: [AndroidPlatform(apiName: 'TracingController.isTracing', apiUrl: 'https://developer.android.com/reference/android/webkit/TracingController#isTracing()')])
Returns whether the WebView framework is tracing.
Officially Supported Platforms/Implementations:
- Android WebView (Official API - TracingController.isTracing)
Use the PlatformTracingController.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(
platforms: [
AndroidPlatform(
apiName: 'TracingController.isTracing',
apiUrl:
'https://developer.android.com/reference/android/webkit/TracingController#isTracing()',
),
],
)
Future<bool> isTracing() {
throw UnimplementedError(
'isTracing is not implemented on the current platform',
);
}