copyWith method
Implementation
Input$CloneProjectInput copyWith(
{String? Function()? body,
String? Function()? clientMutationId,
bool? includeWorkflows,
String? name,
bool? Function()? public,
String? sourceId,
String? targetOwnerId}) =>
Input$CloneProjectInput(
body: body == null ? this.body : body(),
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
includeWorkflows: includeWorkflows == null
? this.includeWorkflows
: includeWorkflows,
name: name == null ? this.name : name,
public: public == null ? this.public : public(),
sourceId: sourceId == null ? this.sourceId : sourceId,
targetOwnerId:
targetOwnerId == null ? this.targetOwnerId : targetOwnerId);