CopyPageRequest constructor
CopyPageRequest({
- bool? copyAttachments,
- bool? copyPermissions,
- bool? copyProperties,
- bool? copyLabels,
- bool? copyCustomContents,
- required CopyPageRequestDestination destination,
- String? pageTitle,
- CopyPageRequestBody? body,
Implementation
CopyPageRequest(
{bool? copyAttachments,
bool? copyPermissions,
bool? copyProperties,
bool? copyLabels,
bool? copyCustomContents,
required this.destination,
this.pageTitle,
this.body})
: copyAttachments = copyAttachments ?? false,
copyPermissions = copyPermissions ?? false,
copyProperties = copyProperties ?? false,
copyLabels = copyLabels ?? false,
copyCustomContents = copyCustomContents ?? false;