User constructor

User({
  1. int? id,
  2. String? login,
  3. String? avatarUrl,
  4. String? htmlUrl,
  5. bool? siteAdmin,
  6. String? name,
  7. String? company,
  8. String? blog,
  9. String? location,
  10. String? email,
  11. bool? hirable,
  12. String? bio,
  13. int? publicReposCount,
  14. int? publicGistsCount,
  15. int? followersCount,
  16. int? followingCount,
  17. DateTime? createdAt,
  18. DateTime? updatedAt,
  19. String? eventsUrl,
  20. String? followersUrl,
  21. String? followingUrl,
  22. String? gistsUrl,
  23. String? gravatarId,
  24. String? nodeId,
  25. String? organizationsUrl,
  26. String? receivedEventsUrl,
  27. String? reposUrl,
  28. DateTime? starredAt,
  29. String? starredUrl,
  30. String? subscriptionsUrl,
  31. String? type,
  32. String? url,
})

Implementation

User({
  this.id,
  this.login,
  this.avatarUrl,
  this.htmlUrl,
  this.siteAdmin,
  this.name,
  this.company,
  this.blog,
  this.location,
  this.email,
  this.hirable,
  this.bio,
  this.publicReposCount,
  this.publicGistsCount,
  this.followersCount,
  this.followingCount,
  this.createdAt,
  this.updatedAt,

  // Properties from the Timeline API
  this.eventsUrl,
  this.followersUrl,
  this.followingUrl,
  this.gistsUrl,
  this.gravatarId,
  this.nodeId,
  this.organizationsUrl,
  this.receivedEventsUrl,
  this.reposUrl,
  this.starredAt,
  this.starredUrl,
  this.subscriptionsUrl,
  this.type,
  this.url,
});