ProjectMetaResponse constructor

const ProjectMetaResponse({
  1. required String id,
  2. required String name,
  3. String? thumbnailUrl,
  4. required int fileCount,
  5. required DateTime updatedAt,
  6. required DateTime createdAt,
})

Implementation

const ProjectMetaResponse({
  required this.id,
  required this.name,
  this.thumbnailUrl,
  required this.fileCount,
  required this.updatedAt,
  required this.createdAt,
});