SearchEntry constructor

const SearchEntry({
  1. required String packageId,
  2. required String version,
  3. required List<VersionItem> versions,
  4. String? description,
  5. required String authors,
  6. String? iconUrl,
  7. String? licenseUrl,
  8. String? owners,
  9. String? projectUrl,
  10. String? registration,
  11. String? summary,
  12. required String tags,
  13. String? title,
  14. int? totalDownloads,
  15. bool? verified,
})

Implementation

const SearchEntry({
  required this.packageId,
  required this.version,
  required this.versions,
  this.description,
  required this.authors,
  this.iconUrl,
  this.licenseUrl,
  this.owners,
  this.projectUrl,
  this.registration,
  this.summary,
  required this.tags,
  this.title,
  this.totalDownloads,
  this.verified,
});