TimelineEvent constructor

TimelineEvent({
  1. int id = 0,
  2. String? nodeId,
  3. String? url,
  4. User? actor,
  5. String event = '',
  6. String? commitId,
  7. String? commitUrl,
  8. DateTime? createdAt,
  9. GitHubApp? performedViaGithubApp,
})

Implementation

TimelineEvent({
  this.id = 0,
  this.nodeId,
  this.url,
  this.actor,
  this.event = '',
  this.commitId,
  this.commitUrl,
  this.createdAt,
  this.performedViaGithubApp,
});