setOnProgress method

Future<void> setOnProgress(
  1. void onProgress(
    1. int progress
    )
)

Invoked when a page is loading to report the progress.

See PlatformWebViewController.setPlatformNavigationDelegate.

Implementation

Future<void> setOnProgress(
  void Function(int progress) onProgress,
) {
  throw UnimplementedError(
      'setOnProgress is not implemented on the current platform.');
}