RepositoryCommit constructor

RepositoryCommit({
  1. String? url,
  2. String? sha,
  3. String? htmlUrl,
  4. String? commentsUrl,
  5. GitCommit? commit,
  6. User? author,
  7. User? committer,
  8. List<GitCommit>? parents,
  9. CommitStats? stats,
  10. List<CommitFile>? files,
})

Implementation

RepositoryCommit({
  this.url,
  this.sha,
  this.htmlUrl,
  this.commentsUrl,
  this.commit,
  this.author,
  this.committer,
  this.parents,
  this.stats,
  this.files,
});