RepoHealth constructor

const RepoHealth({
  1. int? openIssues,
  2. int? closedIssues,
  3. int? openPullRequests,
  4. int? stars,
  5. int? forks,
  6. int? contributors,
  7. double? avgIssueCloseTimeDays,
  8. DateTime? lastCommitDate,
  9. bool? isArchived,
  10. bool? hasIssuesEnabled,
  11. String? defaultBranch,
})

Creates a RepoHealth.

Implementation

const RepoHealth({
  this.openIssues,
  this.closedIssues,
  this.openPullRequests,
  this.stars,
  this.forks,
  this.contributors,
  this.avgIssueCloseTimeDays,
  this.lastCommitDate,
  this.isArchived,
  this.hasIssuesEnabled,
  this.defaultBranch,
});