Summary constructor

Summary({
  1. required DateTime? createdAt,
  2. required PanaRuntimeInfo runtimeInfo,
  3. String? packageName,
  4. Version? packageVersion,
  5. Pubspec? pubspec,
  6. List<String>? allDependencies,
  7. LicenseFile? licenseFile,
  8. List<License>? licenses,
  9. List<String>? tags,
  10. Report? report,
  11. AnalysisResult? result,
  12. List<UrlProblem>? urlProblems,
  13. String? errorMessage,
  14. List<ProcessedScreenshot>? screenshots,
})

Implementation

Summary({
  required this.createdAt,
  required this.runtimeInfo,
  this.packageName,
  this.packageVersion,
  this.pubspec,
  this.allDependencies,
  this.licenseFile,
  this.licenses,
  this.tags,
  this.report,
  this.result,
  this.urlProblems,
  this.errorMessage,
  this.screenshots,
});