copyWith method
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());