PostItemModel constructor

PostItemModel({
  1. String? kind,
  2. String? id,
  3. String? blogId,
  4. DateTime? published,
  5. DateTime? updated,
  6. String? url,
  7. String? error,
  8. String? selfLink,
  9. String? title,
  10. String? content,
  11. Author? author,
  12. Replies? replies,
  13. String? etag,
  14. List<String>? labels,
})

Implementation

PostItemModel({
  this.kind,
  this.id,
  this.blogId,
  this.published,
  this.updated,
  this.url,
  this.error,
  this.selfLink,
  this.title,
  this.content,
  this.author,
  this.replies,
  this.etag,
  this.labels,
});