Blog constructor

Blog({
  1. String? customMetaData,
  2. String? description,
  3. String? id,
  4. String? kind,
  5. BlogLocale? locale,
  6. String? name,
  7. BlogPages? pages,
  8. BlogPosts? posts,
  9. String? published,
  10. String? selfLink,
  11. String? status,
  12. String? updated,
  13. String? url,
})

Implementation

Blog({
  this.customMetaData,
  this.description,
  this.id,
  this.kind,
  this.locale,
  this.name,
  this.pages,
  this.posts,
  this.published,
  this.selfLink,
  this.status,
  this.updated,
  this.url,
});