DataPageEntry constructor

const DataPageEntry({
  1. Key? key,
  2. required String label,
  3. required String routerPath,
  4. required String imagePath,
  5. required String description,
  6. required String lastModified,
  7. String? imageCaptioning,
})

Implementation

const DataPageEntry({
  super.key,
  required this.label,
  required this.routerPath,
  required this.imagePath,
  required this.description,
  required this.lastModified,
  this.imageCaptioning,
});