CreateDirectoryRequestedOptions constructor
CreateDirectoryRequestedOptions({})
Implementation
CreateDirectoryRequestedOptions({
/// The identifier of the file system related to this operation.
required String fileSystemId,
/// The unique identifier of this request.
required int requestId,
/// The path of the directory to be created.
required String directoryPath,
/// Whether the operation is recursive (for directories only).
required bool recursive,
}) : _wrapped = $js.CreateDirectoryRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
directoryPath: directoryPath,
recursive: recursive,
);