PullRequest constructor

PullRequest({
  1. Branch? base,
  2. String? body,
  3. String? closeTime,
  4. String? createTime,
  5. Branch? head,
  6. String? name,
  7. String? state,
  8. String? title,
  9. String? updateTime,
})

Implementation

PullRequest({
  this.base,
  this.body,
  this.closeTime,
  this.createTime,
  this.head,
  this.name,
  this.state,
  this.title,
  this.updateTime,
});