copyWith method
Implementation
Input$LinkRepositoryToProjectInput copyWith(
{String? Function()? clientMutationId,
String? projectId,
String? repositoryId}) =>
Input$LinkRepositoryToProjectInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
projectId: projectId == null ? this.projectId : projectId,
repositoryId:
repositoryId == null ? this.repositoryId : repositoryId);