MoveEntryRequestedOptions constructor
MoveEntryRequestedOptions({})
Implementation
MoveEntryRequestedOptions({
/// The identifier of the file system related to this operation.
required String fileSystemId,
/// The unique identifier of this request.
required int requestId,
/// The source path of the entry to be moved into a new place.
required String sourcePath,
/// The destination path for the copy operation.
required String targetPath,
}) : _wrapped = $js.MoveEntryRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
sourcePath: sourcePath,
targetPath: targetPath,
);