enableWebviewRecording static method

Future<void> enableWebviewRecording(
  1. bool enabled
)

SENSITIVE Setting of webview recording for example if you navigate to webview through app you can record it after setting to enabled to true

Implementation

/// Setting of webview recording
/// for example if you navigate to webview through app
/// you can record it after setting to enabled to true
static Future<void> enableWebviewRecording(bool enabled) async {
  await _channel.invokeMethod('enableWebviewRecording', {"enabled": enabled});
}