setOnPageStarted method

Future<void> setOnPageStarted(
  1. void onPageStarted(
    1. String url
    )
)

Invoked when a page has started loading.

See PlatformWebViewController.setPlatformNavigationDelegate.

Implementation

Future<void> setOnPageStarted(
  void Function(String url) onPageStarted,
) {
  throw UnimplementedError(
      'setOnPageStarted is not implemented on the current platform.');
}