createPlatformCookieManager method

PlatformWebViewCookieManager createPlatformCookieManager(
  1. PlatformWebViewCookieManagerCreationParams params
)

Creates a new PlatformWebViewCookieManager.

This function should only be called by the app-facing package. Look at using WebViewCookieManager in webview_flutter instead.

Implementation

PlatformWebViewCookieManager createPlatformCookieManager(
  PlatformWebViewCookieManagerCreationParams params,
) {
  throw UnimplementedError(
      'createPlatformCookieManager is not implemented on the current platform.');
}