UExamReadParams constructor

UExamReadParams({
  1. String? categoryId,
  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

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