copyWith method

Input$UpdatePullRequestReviewCommentInput copyWith({
  1. String? body,
  2. String? clientMutationId()?,
  3. String? pullRequestReviewCommentId,
})

Implementation

Input$UpdatePullRequestReviewCommentInput copyWith(
        {String? body,
        String? Function()? clientMutationId,
        String? pullRequestReviewCommentId}) =>
    Input$UpdatePullRequestReviewCommentInput(
        body: body == null ? this.body : body,
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        pullRequestReviewCommentId: pullRequestReviewCommentId == null
            ? this.pullRequestReviewCommentId
            : pullRequestReviewCommentId);