PlatformInternalStoragePathHandlerCreationParams.fromPlatformPathHandlerCreationParams constructor
PlatformInternalStoragePathHandlerCreationParams.fromPlatformPathHandlerCreationParams(
- PlatformPathHandlerCreationParams params, {
- required String directory,
Creates a PlatformInternalStoragePathHandlerCreationParams instance based on PlatformPathHandlerCreationParams.
Implementation
factory PlatformInternalStoragePathHandlerCreationParams.fromPlatformPathHandlerCreationParams(
PlatformPathHandlerCreationParams params,
{required String directory}) {
return PlatformInternalStoragePathHandlerCreationParams(params,
directory: directory);
}