UCommentReadParams constructor

UCommentReadParams({
  1. String? userId,
  2. String? productId,
  3. String? targetUserId,
  4. bool? showMedia,
  5. int? pageSize,
  6. int? pageNumber,
  7. DateTime? fromCreatedAt,
  8. DateTime? toCreatedAt,
  9. bool? orderByCreatedAt,
  10. bool? orderByCreatedAtDesc,
  11. bool? orderByUpdatedAt,
  12. bool? orderByUpdatedAtDesc,
  13. List<int>? tags,
})

Implementation

UCommentReadParams({
  this.userId,
  this.productId,
  this.targetUserId,
  this.showMedia,
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.orderByCreatedAt,
  this.orderByCreatedAtDesc,
  this.orderByUpdatedAt,
  this.orderByUpdatedAtDesc,
  this.tags,
});