hasOnlySecureContent method
{@template flutter_webview_platform_interface.PlatformInAppWebViewController.hasOnlySecureContent} A Boolean value indicating whether all resources on the page have been loaded over securely encrypted connections.
Officially Supported Platforms/Implementations:
- iOS (Official API - WKWebView.hasOnlySecureContent)
- MacOS (Official API - WKWebView.hasOnlySecureContent) @{endtemplate}
Implementation
@override
Future<bool> hasOnlySecureContent() async {
Map<String, dynamic> args = <String, dynamic>{};
return await channel?.invokeMethod<bool>('hasOnlySecureContent', args) ??
false;
}