Collaborator constructor

Collaborator(
  1. String? login,
  2. int? id,
  3. String? htmlUrl,
  4. String? type,
  5. bool? siteAdmin,
  6. Map<String, bool>? permissions,
)

Implementation

Collaborator(
  this.login,
  this.id,
  this.htmlUrl,
  this.type,
  this.siteAdmin,
  this.permissions,
);