GitCommit constructor

GitCommit({
  1. String? sha,
  2. String? url,
  3. GitCommitUser? author,
  4. GitCommitUser? committer,
  5. String? message,
  6. GitTree? tree,
  7. List<GitCommit>? parents,
  8. int? commentCount,
})

Implementation

GitCommit({
  this.sha,
  this.url,
  this.author,
  this.committer,
  this.message,
  this.tree,
  this.parents,
  this.commentCount,
});