getWebViewPath method
Retrieves the path for the WebView userDataFolder on PC.
Returns the path where the WebView stores its data.
Implementation
Future<String> getWebViewPath() async {
final document = await getApplicationDocumentsDirectory();
return document.path;
}