getWebViewPath method

Future<String> getWebViewPath()

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;
}