BlogsModel constructor

BlogsModel({
  1. String? kind,
  2. String? id,
  3. String? name,
  4. String? description,
  5. DateTime? published,
  6. DateTime? updated,
  7. String? url,
  8. String? selfLink,
  9. String? error,
  10. BlogPost? posts,
  11. BlogPage? pages,
  12. BlogLocale? locale,
})

Implementation

BlogsModel({
  this.kind,
  this.id,
  this.name,
  this.description,
  this.published,
  this.updated,
  this.url,
  this.selfLink,
  this.error,
  this.posts,
  this.pages,
  this.locale,
});