UCommentCreateParams constructor

UCommentCreateParams({
  1. required String description,
  2. required double score,
  3. required List<int> tags,
  4. int? reaction,
  5. String? parentId,
  6. String? productId,
  7. String? blogId,
  8. String? userId,
  9. String? creatorId,
  10. String? detail1,
  11. String? detail2,
  12. String? id,
  13. List<String>? adminUserIds,
})

Implementation

UCommentCreateParams({
  required this.description,
  required this.score,
  required this.tags,
  this.reaction,
  this.parentId,
  this.productId,
  this.blogId,
  this.userId,
  this.creatorId,
  this.detail1,
  this.detail2,
  this.id,
  this.adminUserIds,
});