Team constructor

Team({
  1. String? description,
  2. String? htmlUrl,
  3. int? id,
  4. String? ldapDn,
  5. int? membersCount,
  6. String? membersUrl,
  7. String? name,
  8. String? nodeId,
  9. Organization? organization,
  10. Team? parent,
  11. String? permission,
  12. Permissions? permissions,
  13. String? privacy,
  14. int? reposCount,
  15. String? repositoriesUrl,
  16. String? slug,
  17. String? url,
})

Implementation

Team({
  this.description,
  this.htmlUrl,
  this.id,
  this.ldapDn,
  this.membersCount,
  this.membersUrl,
  this.name,
  this.nodeId,
  this.organization,
  this.parent,
  this.permission,
  this.permissions,
  this.privacy,
  this.reposCount,
  this.repositoriesUrl,
  this.slug,
  this.url,
});