getWebViewVersion static method

Future<String?> getWebViewVersion()

Get the browser version info including channel name if it is not the WebView2 Runtime. Returns null if the webview2 runtime is not installed.

Implementation

static Future<String?> getWebViewVersion() async {
  return _pluginChannel.invokeMethod<String>('getWebViewVersion');
}