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