ContentLink constructor

const ContentLink({
  1. required int id,
  2. required String uuid,
  3. required String slug,
  4. required String? path,
  5. required String realPath,
  6. required String name,
  7. required int? parentID,
  8. required bool published,
  9. required bool isFolder,
  10. required bool isStartpage,
  11. required int position,
})

Implementation

const ContentLink({
  required this.id,
  required this.uuid,
  required this.slug,
  required this.path,
  required this.realPath,
  required this.name,
  required this.parentID,
  required this.published,
  required this.isFolder,
  required this.isStartpage,
  required this.position,
});