hasOnlySecureContent method

  1. @override
Future<bool> hasOnlySecureContent()

{@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:

Implementation

@override
Future<bool> hasOnlySecureContent() async {
  Map<String, dynamic> args = <String, dynamic>{};
  return await channel?.invokeMethod<bool>('hasOnlySecureContent', args) ??
      false;
}