createPlatformInternalStoragePathHandler method

PlatformInternalStoragePathHandler createPlatformInternalStoragePathHandler(
  1. PlatformInternalStoragePathHandlerCreationParams params
)

Creates a new PlatformInternalStoragePathHandler.

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

Implementation

PlatformInternalStoragePathHandler createPlatformInternalStoragePathHandler(
  PlatformInternalStoragePathHandlerCreationParams params,
) {
  throw UnimplementedError(
    'createPlatformInternalStoragePathHandler is not implemented on the current platform.',
  );
}