createPlatformCookieManager method

PlatformCookieManager createPlatformCookieManager(
  1. PlatformCookieManagerCreationParams params
)

Creates a new PlatformCookieManager.

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

Implementation

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