createPlatformWebStorageStatic method

PlatformWebStorage createPlatformWebStorageStatic()

Creates a new empty PlatformWebStorage to access static methods.

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

Implementation

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