UContentReadParams constructor

UContentReadParams({
  1. bool? showMedia,
  2. int? pageSize,
  3. int? pageNumber,
  4. DateTime? fromCreatedAt,
  5. DateTime? toCreatedAt,
  6. bool? orderByCreatedAt,
  7. bool? orderByCreatedAtDesc,
  8. bool? orderByUpdatedAt,
  9. bool? orderByUpdatedAtDesc,
  10. List<int>? tags,
})

Implementation

UContentReadParams({
  this.showMedia,
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.orderByCreatedAt,
  this.orderByCreatedAtDesc,
  this.orderByUpdatedAt,
  this.orderByUpdatedAtDesc,
  this.tags,
});