setOnHttpError method

Future<void> setOnHttpError(
  1. HttpResponseErrorCallback onHttpError
)
inherited

Invoked when an HTTP error has occurred during loading.

See PlatformWebViewController.setPlatformNavigationDelegate.

Implementation

Future<void> setOnHttpError(HttpResponseErrorCallback onHttpError) {
  throw UnimplementedError(
    'setOnHttpError is not implemented on the current platform.',
  );
}