setOnUrlChange method

Future<void> setOnUrlChange(
  1. UrlChangeCallback onUrlChange
)

Invoked when the underlying web view changes to a new url.

See PlatformWebViewController.setPlatformNavigationDelegate.

Implementation

Future<void> setOnUrlChange(UrlChangeCallback onUrlChange) {
  throw UnimplementedError(
    'setOnUrlChange is not implemented on the current platform.',
  );
}