getHttpAuthCredentials method
- required URLProtectionSpace protectionSpace,
Gets all the HTTP auth credentials saved for that protectionSpace.
Officially Supported Platforms/Implementations:
- Android WebView
- iOS WKWebView
- macOS WKWebView
- Linux WPE WebKit
Parameters - Officially Supported Platforms/Implementations:
protectionSpace: all platforms
Use the PlatformHttpAuthCredentialDatabase.isMethodSupported method to check if this method is supported at runtime.
Implementation
Future<List<URLCredential>> getHttpAuthCredentials({
required URLProtectionSpace protectionSpace,
}) => platform.getHttpAuthCredentials(protectionSpace: protectionSpace);