copyWith method

Input$AddPullRequestReviewCommentInput copyWith({
  1. String? body,
  2. String? clientMutationId()?,
  3. String? commitOID()?,
  4. String? inReplyTo()?,
  5. String? path()?,
  6. int? position()?,
  7. String? pullRequestId()?,
  8. String? pullRequestReviewId()?,
})

Implementation

Input$AddPullRequestReviewCommentInput copyWith(
        {String? body,
        String? Function()? clientMutationId,
        String? Function()? commitOID,
        String? Function()? inReplyTo,
        String? Function()? path,
        int? Function()? position,
        String? Function()? pullRequestId,
        String? Function()? pullRequestReviewId}) =>
    Input$AddPullRequestReviewCommentInput(
        body: body == null ? this.body : body,
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        commitOID: commitOID == null ? this.commitOID : commitOID(),
        inReplyTo: inReplyTo == null ? this.inReplyTo : inReplyTo(),
        path: path == null ? this.path : path(),
        position: position == null ? this.position : position(),
        pullRequestId:
            pullRequestId == null ? this.pullRequestId : pullRequestId(),
        pullRequestReviewId: pullRequestReviewId == null
            ? this.pullRequestReviewId
            : pullRequestReviewId());