copyWith method

Input$DeletePullRequestReviewInput copyWith({
  1. String? clientMutationId()?,
  2. String? pullRequestReviewId,
})

Implementation

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