Post constructor

Post({
  1. PostAuthor? author,
  2. PostBlog? blog,
  3. String? content,
  4. String? customMetaData,
  5. String? etag,
  6. String? id,
  7. List<PostImages>? images,
  8. String? kind,
  9. List<String>? labels,
  10. PostLocation? location,
  11. String? published,
  12. String? readerComments,
  13. PostReplies? replies,
  14. String? selfLink,
  15. String? status,
  16. String? title,
  17. String? titleLink,
  18. String? trashed,
  19. String? updated,
  20. String? url,
})

Implementation

Post({
  this.author,
  this.blog,
  this.content,
  this.customMetaData,
  this.etag,
  this.id,
  this.images,
  this.kind,
  this.labels,
  this.location,
  this.published,
  this.readerComments,
  this.replies,
  this.selfLink,
  this.status,
  this.title,
  this.titleLink,
  this.trashed,
  this.updated,
  this.url,
});