PullRequestFile constructor

PullRequestFile({
  1. String? sha,
  2. String? filename,
  3. String? status,
  4. int? additionsCount,
  5. int? deletionsCount,
  6. int? changesCount,
  7. String? blobUrl,
  8. String? rawUrl,
  9. String? contentsUrl,
  10. String? patch,
})

Implementation

PullRequestFile({
  this.sha,
  this.filename,
  this.status,
  this.additionsCount,
  this.deletionsCount,
  this.changesCount,
  this.blobUrl,
  this.rawUrl,
  this.contentsUrl,
  this.patch,
});