createPlatformSessionStorage method

PlatformSessionStorage createPlatformSessionStorage(
  1. PlatformSessionStorageCreationParams params
)

Creates a new PlatformSessionStorage.

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

Implementation

PlatformSessionStorage createPlatformSessionStorage(
  PlatformSessionStorageCreationParams params,
) {
  throw UnimplementedError(
      'createPlatformSessionStorage is not implemented on the current platform.');
}