disposeKeepAlive static method

Future<void> disposeKeepAlive(
  1. InAppWebViewKeepAlive keepAlive
)

Disposes the WebView that is using the keepAlive instance for the keep alive feature.

Officially Supported Platforms/Implementations:

  • Android WebView
  • iOS WKWebView
  • macOS WKWebView
  • Windows WebView2
  • Linux WPE WebKit

Parameters - Officially Supported Platforms/Implementations:

  • keepAlive: all platforms

Use the PlatformInAppWebViewController.isMethodSupported method to check if this method is supported at runtime.

Implementation

static Future<void> disposeKeepAlive(InAppWebViewKeepAlive keepAlive) =>
    PlatformInAppWebViewController.static().disposeKeepAlive(keepAlive);