copyWith method
Implementation
CopyPageHierarchyRequest copyWith(
{bool? copyAttachments,
bool? copyPermissions,
bool? copyProperties,
bool? copyLabels,
bool? copyCustomContents,
bool? copyDescendants,
String? destinationPageId,
CopyPageHierarchyTitleOptions? titleOptions}) {
return CopyPageHierarchyRequest(
copyAttachments: copyAttachments ?? this.copyAttachments,
copyPermissions: copyPermissions ?? this.copyPermissions,
copyProperties: copyProperties ?? this.copyProperties,
copyLabels: copyLabels ?? this.copyLabels,
copyCustomContents: copyCustomContents ?? this.copyCustomContents,
copyDescendants: copyDescendants ?? this.copyDescendants,
destinationPageId: destinationPageId ?? this.destinationPageId,
titleOptions: titleOptions ?? this.titleOptions,
);
}