I am using webview_flutter package and I want to log the users' device info for the system Webview version for Android and WkWebView for iOS how can I get the corresponding webview version?
This package fk_user_agent can retrieve user agent which includes info about the web view version
await FkUserAgent.init();
String? userAgent = FkUserAgent.webViewUserAgent;