copyWith method
CopyPageRequest
copyWith({
- bool? copyAttachments,
- bool? copyPermissions,
- bool? copyProperties,
- bool? copyLabels,
- bool? copyCustomContents,
- CopyPageRequestDestination? destination,
- String? pageTitle,
- CopyPageRequestBody? body,
Implementation
CopyPageRequest copyWith(
{bool? copyAttachments,
bool? copyPermissions,
bool? copyProperties,
bool? copyLabels,
bool? copyCustomContents,
CopyPageRequestDestination? destination,
String? pageTitle,
CopyPageRequestBody? body}) {
return CopyPageRequest(
copyAttachments: copyAttachments ?? this.copyAttachments,
copyPermissions: copyPermissions ?? this.copyPermissions,
copyProperties: copyProperties ?? this.copyProperties,
copyLabels: copyLabels ?? this.copyLabels,
copyCustomContents: copyCustomContents ?? this.copyCustomContents,
destination: destination ?? this.destination,
pageTitle: pageTitle ?? this.pageTitle,
body: body ?? this.body,
);
}