IssueComment constructor

IssueComment({
  1. int? id,
  2. String? body,
  3. User? user,
  4. DateTime? createdAt,
  5. DateTime? updatedAt,
  6. String? url,
  7. String? htmlUrl,
  8. String? issueUrl,
})

Implementation

IssueComment({
  this.id,
  this.body,
  this.user,
  this.createdAt,
  this.updatedAt,
  this.url,
  this.htmlUrl,
  this.issueUrl,
});