isTracing method

  1. @override
Future<bool> isTracing()

Returns whether the WebView framework is tracing.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<bool> isTracing() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await channel?.invokeMethod<bool>('isTracing', args) ?? false;
}