UCommentResponse constructor

UCommentResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required UCommentJson jsonData,
  4. required List<int> tags,
  5. required double score,
  6. required String description,
  7. required String userId,
  8. required List<String> adminUserIds,
  9. String? parentId,
  10. UUserResponse? user,
  11. UUserResponse? creator,
  12. String? creatorId,
  13. String? productId,
  14. String? blogId,
  15. List<UCommentResponse>? children,
  16. List<UMediaResponse>? media,
})

Implementation

UCommentResponse({
  required this.id,
  required this.createdAt,
  required this.jsonData,
  required this.tags,
  required this.score,
  required this.description,
  required this.userId,
  required this.adminUserIds,
  this.parentId,
  this.user,
  this.creator,
  this.creatorId,
  this.productId,
  this.blogId,
  this.children,
  this.media,
});