isTracing method
Returns whether the WebView framework is tracing.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - TracingController.isTracing)
Implementation
@override
Future<bool> isTracing() async {
Map<String, dynamic> args = <String, dynamic>{};
return await channel?.invokeMethod<bool>('isTracing', args) ?? false;
}