createPlatformWebStorage method

PlatformWebStorage createPlatformWebStorage(
  1. PlatformWebStorageCreationParams params
)

Creates a new PlatformWebStorage.

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

Implementation

PlatformWebStorage createPlatformWebStorage(
  PlatformWebStorageCreationParams params,
) {
  throw UnimplementedError(
      'createPlatformWebStorage is not implemented on the current platform.');
}