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