UMediaResponse constructor

UMediaResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required DateTime updatedAt,
  4. required UMediaJson jsonData,
  5. required List<int> tags,
  6. required String path,
  7. String? userId,
  8. String? contentId,
  9. String? categoryId,
  10. String? commentId,
  11. String? productId,
})

Implementation

UMediaResponse({
  required this.id,
  required this.createdAt,
  required this.updatedAt,
  required this.jsonData,
  required this.tags,
  required this.path,
  this.userId,
  this.contentId,
  this.categoryId,
  this.commentId,
  this.productId,
});