PlatformInternalStoragePathHandlerCreationParams.fromPlatformPathHandlerCreationParams constructor

PlatformInternalStoragePathHandlerCreationParams.fromPlatformPathHandlerCreationParams(
  1. PlatformPathHandlerCreationParams params, {
  2. required String directory,
})

Creates a PlatformInternalStoragePathHandlerCreationParams instance based on PlatformPathHandlerCreationParams.

Implementation

factory PlatformInternalStoragePathHandlerCreationParams.fromPlatformPathHandlerCreationParams(
  PlatformPathHandlerCreationParams params, {
  required String directory,
}) {
  return PlatformInternalStoragePathHandlerCreationParams(
    params,
    directory: directory,
  );
}