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,
  7. String? detail1,
  8. String? detail2,
  9. List<String>? adminUserIds,
  10. List<String>? addAdminUserIds,
  11. List<String>? removeAdminUserIds,
})

Implementation

UCommentUpdateParams({
  required this.id,
  this.description,
  this.score,
  this.addTags,
  this.removeTags,
  this.tags,
  this.detail1,
  this.detail2,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});