CopyEntryRequestedOptions constructor

CopyEntryRequestedOptions({
  1. required String fileSystemId,
  2. required int requestId,
  3. required String sourcePath,
  4. required String targetPath,
})

Implementation

CopyEntryRequestedOptions({
  /// 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 copied.
  required String sourcePath,

  /// The destination path for the copy operation.
  required String targetPath,
}) : _wrapped = $js.CopyEntryRequestedOptions(
        fileSystemId: fileSystemId,
        requestId: requestId,
        sourcePath: sourcePath,
        targetPath: targetPath,
      );