TimelineCommitEvent constructor

TimelineCommitEvent({
  1. int id = 0,
  2. String? nodeId,
  3. String? url,
  4. User? actor,
  5. String event = 'committed',
  6. String? commitId,
  7. String? commitUrl,
  8. DateTime? createdAt,
  9. GitHubApp? performedViaGithubApp,
  10. User? author,
  11. User? committer,
  12. String? htmlUrl,
  13. String? message,
  14. List<Tree>? parents,
  15. String? sha,
  16. Tree? tree,
  17. Verification? verification,
})

Implementation

TimelineCommitEvent({
  super.id = 0,
  super.nodeId,
  super.url,
  super.actor,
  super.event = 'committed',
  super.commitId,
  super.commitUrl,
  super.createdAt,
  super.performedViaGithubApp,
  this.author,
  this.committer,
  this.htmlUrl,
  this.message,
  this.parents,
  this.sha,
  this.tree,
  this.verification,
});