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? targetUserId,
  8. String? userId,
})

Implementation

UCommentCreateParams({
  required this.description,
  required this.score,
  required this.tags,
  this.reaction,
  this.parentId,
  this.productId,
  this.targetUserId,
  this.userId,
});