createPlatformLocalStorageStatic method

PlatformLocalStorage createPlatformLocalStorageStatic()

Creates a new empty PlatformLocalStorage to access static methods.

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

Implementation

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