Comment constructor

Comment({
  1. int? id,
  2. int? author,
  3. String? authorEmail,
  4. String? authorIp,
  5. String? authorName,
  6. String? authorUrl,
  7. String? authorUserAgent,
  8. String? content,
  9. String? date,
  10. String? dateGmt,
  11. String? link,
  12. int? parent,
  13. int? post,
  14. String? status,
  15. String? type,
  16. Map<String, dynamic>? authorAvatarUrls,
  17. dynamic meta,
})

Implementation

Comment({
  this.id,
  this.author,
  this.authorEmail,
  this.authorIp,
  this.authorName,
  this.authorUrl,
  this.authorUserAgent,
  this.content,
  this.date,
  this.dateGmt,
  this.link,
  this.parent,
  this.post,
  this.status,
  this.type,
  this.authorAvatarUrls,
  this.meta,
});