PostComments constructor

PostComments({
  1. String? kind,
  2. String? id,
  3. String? postId,
  4. String? blogId,
  5. DateTime? published,
  6. DateTime? updated,
  7. String? selfLink,
  8. String? content,
  9. Author? author,
  10. String? error,
})

Implementation

PostComments(
    {this.kind,
    this.id,
    this.postId,
    this.blogId,
    this.published,
    this.updated,
    this.selfLink,
    this.content,
    this.author,
    this.error});