copyWith method

Input$DraftPullRequestReviewComment copyWith({
  1. String? body,
  2. String? path,
  3. int? position,
})

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);