copyWith method

Input$ArchiveRepositoryInput copyWith({
  1. String? clientMutationId()?,
  2. String? repositoryId,
})

Implementation

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