PullRequestComment constructor

PullRequestComment({
  1. Code? code,
  2. Comment? comment,
  3. String? createTime,
  4. String? name,
  5. Review? review,
  6. String? updateTime,
})

Implementation

PullRequestComment({
  this.code,
  this.comment,
  this.createTime,
  this.name,
  this.review,
  this.updateTime,
});