LandingPageEntry constructor

const LandingPageEntry({
  1. Key? key,
  2. required String label,
  3. required String routerPath,
  4. required String headline,
  5. required String imagePath,
  6. ExternalLinkConfig? githubRepo,
  7. required String description,
  8. required String lastModified,
  9. required String fileTitle,
  10. required String fileAdditionalInfo,
  11. required String fileBaseDir,
  12. String? imageCaptioning,
})

Implementation

const LandingPageEntry({
  super.key,
  required this.label,
  required this.routerPath,
  required this.headline,
  required this.imagePath,
  this.githubRepo,
  required this.description,
  required this.lastModified,
  required this.fileTitle,
  required this.fileAdditionalInfo,
  required this.fileBaseDir,
  this.imageCaptioning,
});