GitHubFile constructor

GitHubFile({
  1. String? type,
  2. String? encoding,
  3. int? size,
  4. String? name,
  5. String? path,
  6. String? content,
  7. String? sha,
  8. String? htmlUrl,
  9. String? gitUrl,
  10. String? downloadUrl,
  11. Links? links,
  12. RepositorySlug? sourceRepository,
})

Implementation

GitHubFile({
  this.type,
  this.encoding,
  this.size,
  this.name,
  this.path,
  this.content,
  this.sha,
  this.htmlUrl,
  this.gitUrl,
  this.downloadUrl,
  this.links,
  this.sourceRepository,
});