disposeKeepAlive 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 native WebView
  • iOS

Implementation

Future<void> disposeKeepAlive(InAppWebViewKeepAlive keepAlive) {
  throw UnimplementedError(
      'disposeKeepAlive is not implemented on the current platform');
}