copyWith method
Implementation
CopyPageRequestDestination copyWith(
{CopyPageRequestDestinationType? type, String? value}) {
return CopyPageRequestDestination(
type: type ?? this.type,
value: value ?? this.value,
);
}
CopyPageRequestDestination copyWith(
{CopyPageRequestDestinationType? type, String? value}) {
return CopyPageRequestDestination(
type: type ?? this.type,
value: value ?? this.value,
);
}