onLoadStart method

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

Event fired when the PlatformInAppBrowser starts to load an url.

Officially Supported Platforms/Implementations:

Implementation

@override
Future onLoadStart(url) async {
  if (url != null) _processUrl(url);
}