Team constructor

Team({
  1. String? name,
  2. int? id,
  3. String? permission,
  4. int? membersCount,
  5. int? reposCount,
  6. Organization? organization,
})

Implementation

Team({
  this.name,
  this.id,
  this.permission,
  this.membersCount,
  this.reposCount,
  this.organization,
});