FeaturedImage constructor

FeaturedImage({
  1. required int? id,
  2. required dynamic type,
  3. required dynamic name,
  4. required String? path,
  5. required String? extension,
  6. required int? size,
  7. required int? status,
  8. required int? s3,
  9. required DateTime? createdAt,
  10. required dynamic oldPath,
  11. required String? thumb,
  12. required String? url,
})

Implementation

FeaturedImage({
  required this.id,
  required this.type,
  required this.name,
  required this.path,
  required this.extension,
  required this.size,
  required this.status,
  required this.s3,
  required this.createdAt,
  required this.oldPath,
  required this.thumb,
  required this.url,
});