onLoadStop method

  1. @override
Future onLoadStop(
  1. WebUri? url
)

Event fired when the WebView finishes loading an url.

Officially Supported Platforms/Implementations:

Parameters - Officially Supported Platforms/Implementations:

  • url: all platforms

Use the PlatformInAppBrowserEvents.isMethodSupported method to check if this method is supported at runtime.

Implementation

@override
Future onLoadStop(url) async {
  pullToRefreshController?.endRefreshing();
}