Post constructor
      
      Post({ 
    
    
- PostAuthor? author,
- PostBlog? blog,
- String? content,
- String? customMetaData,
- String? etag,
- String? id,
- List<PostImages> ? images,
- String? kind,
- List<String> ? labels,
- PostLocation? location,
- String? published,
- String? readerComments,
- PostReplies? replies,
- String? selfLink,
- String? status,
- String? title,
- String? titleLink,
- String? trashed,
- String? updated,
- 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,
});