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,
})

Implementation

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