UCommentUpdateParams constructor

UCommentUpdateParams({
  1. required String id,
  2. String? description,
  3. double? score,
  4. List<int>? addTags,
  5. List<int>? removeTags,
  6. List<int>? tags,
})

Implementation

UCommentUpdateParams({
  required this.id,
  this.description,
  this.score,
  this.addTags,
  this.removeTags,
  this.tags,
});