User constructor

User({
  1. String? about,
  2. UserBlogs? blogs,
  3. String? created,
  4. String? displayName,
  5. String? id,
  6. String? kind,
  7. UserLocale? locale,
  8. String? selfLink,
  9. String? url,
})

Implementation

User({
  this.about,
  this.blogs,
  this.created,
  this.displayName,
  this.id,
  this.kind,
  this.locale,
  this.selfLink,
  this.url,
});