copyWith method

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

Implementation

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