Organization constructor

Organization({
  1. String? login,
  2. int? id,
  3. String? htmlUrl,
  4. String? avatarUrl,
  5. String? name,
  6. String? company,
  7. String? blog,
  8. String? location,
  9. String? email,
  10. int? publicReposCount,
  11. int? publicGistsCount,
  12. int? followersCount,
  13. int? followingCount,
  14. DateTime? createdAt,
  15. DateTime? updatedAt,
})

Implementation

Organization({
  this.login,
  this.id,
  this.htmlUrl,
  this.avatarUrl,
  this.name,
  this.company,
  this.blog,
  this.location,
  this.email,
  this.publicReposCount,
  this.publicGistsCount,
  this.followersCount,
  this.followingCount,
  this.createdAt,
  this.updatedAt,
});