GitHubComparison constructor

GitHubComparison(
  1. String? url,
  2. String? status,
  3. int? aheadBy,
  4. int? behindBy,
  5. int? totalCommits,
  6. List<CommitFile>? files,
  7. List<RepositoryCommit>? commits,
)

Implementation

GitHubComparison(
  this.url,
  this.status,
  this.aheadBy,
  this.behindBy,
  this.totalCommits,
  this.files,
  this.commits,
);