copyWith method
Implementation
Input$DraftPullRequestReviewComment copyWith(
{String? body, String? path, int? position}) =>
Input$DraftPullRequestReviewComment(
body: body == null ? this.body : body,
path: path == null ? this.path : path,
position: position == null ? this.position : position);