copyWith method

Input$UnlinkRepositoryFromProjectInput copyWith({
  1. String? clientMutationId()?,
  2. String? projectId,
  3. String? repositoryId,
})

Implementation

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