Contributor constructor

Contributor({
  1. int? id,
  2. String? login,
  3. String? avatarUrl,
  4. String? htmlUrl,
  5. String? type,
  6. bool? siteAdmin,
  7. int? contributions,
})

Implementation

Contributor({
  this.id,
  this.login,
  this.avatarUrl,
  this.htmlUrl,
  this.type,
  this.siteAdmin,
  this.contributions,
});