fetchContent method

Future<void> fetchContent()

We use this method to fetch the content of the webview, this method using the loadRequest method from the webview controller to load the webview url.

Implementation

Future<void> fetchContent() {
  return this.loadRequest(Uri.parse(_webviewUrl));
}