copyWith method

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

Implementation

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