UParkingShiftReadParams constructor

UParkingShiftReadParams({
  1. String? parkingId,
  2. bool? isOpen,
  3. int? pageSize,
  4. int? pageNumber,
  5. UParkingShiftSelectorArgs? selectorArgs,
  6. DateTime? fromCreatedAt,
  7. DateTime? toCreatedAt,
  8. List<int>? tags,
  9. List<String>? ids,
  10. String? creatorId,
  11. TagOrderBy orderBy = TagOrderBy.createdAt,
})

Implementation

UParkingShiftReadParams({
  this.parkingId,
  this.isOpen,
  this.pageSize,
  this.pageNumber,
  this.selectorArgs,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.tags,
  this.ids,
  this.creatorId,
  this.orderBy = TagOrderBy.createdAt,
});