PlatformInternalStoragePathHandlerCreationParams constructor

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

Used by the platform implementation to create a new PlatformInternalStoragePathHandler.

Implementation

PlatformInternalStoragePathHandlerCreationParams(
    // This parameter prevents breaking changes later.
    // ignore: avoid_unused_constructor_parameters
    PlatformPathHandlerCreationParams params,
    {required this.directory})
    : super(path: params.path);