iosShouldAllowDeprecatedTLS method
- @SupportedPlatforms.new(platforms: [IOSPlatform()])
- @Deprecated('Use shouldAllowDeprecatedTLS instead')
- URLAuthenticationChallenge challenge
Use shouldAllowDeprecatedTLS instead.
Officially Supported Platforms/Implementations:
- iOS WKWebView
Parameters - Officially Supported Platforms/Implementations:
challenge: all platforms
Use the PlatformInAppBrowserEvents.isMethodSupported method to check if this method is supported at runtime.
Implementation
@SupportedPlatforms(platforms: [IOSPlatform()])
@Deprecated('Use shouldAllowDeprecatedTLS instead')
FutureOr<IOSShouldAllowDeprecatedTLSAction?>? iosShouldAllowDeprecatedTLS(
URLAuthenticationChallenge challenge,
) {
return null;
}