PullRequestReview constructor

PullRequestReview({
  1. required int id,
  2. User? user,
  3. String? body,
  4. String? state,
  5. String? htmlUrl,
  6. String? pullRequestUrl,
})

Implementation

PullRequestReview({
  required this.id,
  this.user,
  this.body,
  this.state,
  this.htmlUrl,
  this.pullRequestUrl,
});