onReceivedHttpAuthRequest method

  1. @override
Future<HttpAuthResponse?>? onReceivedHttpAuthRequest(
  1. URLAuthenticationChallenge challenge
)
override

Event fired when the WebView received an HTTP authentication request. The default behavior is to cancel the request.

challenge contains data about host, port, protocol, realm, etc. as specified in the URLAuthenticationChallenge.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<HttpAuthResponse?>? onReceivedHttpAuthRequest(
    URLAuthenticationChallenge challenge) {
  return null;
}