onLoadStart method

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

Event fired when the InAppBrowser starts to load an url.

Supported Platforms/Implementations:

Implementation

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