CommitComment constructor

CommitComment({
  1. int? id,
  2. int? line,
  3. int? position,
  4. String? path,
  5. String? apiUrl,
  6. String? commitId,
  7. DateTime? createdAt,
  8. String? htmlUrl,
  9. DateTime? updatedAt,
  10. String? body,
  11. String? authorAssociation,
  12. String? nodeId,
  13. ReactionRollup? reactions,
  14. User? user,
})

Implementation

CommitComment({
  this.id,
  this.line,
  this.position,
  this.path,
  this.apiUrl,
  this.commitId,
  this.createdAt,
  this.htmlUrl,
  this.updatedAt,
  this.body,

  // Properties from the Timeline API
  this.authorAssociation,
  this.nodeId,
  this.reactions,
  this.user,
});