UHotelRoomReadParams constructor

UHotelRoomReadParams({
  1. int? pageSize,
  2. int? pageNumber,
  3. DateTime? fromCreatedAt,
  4. DateTime? toCreatedAt,
  5. List<int>? tags,
  6. List<String>? ids,
  7. String? creatorId,
  8. String? title,
  9. String? hotelId,
  10. double? minPrice,
  11. double? maxPrice,
  12. bool? availableOnly,
  13. HotelRoomSelectorArgs? selectorArgs,
  14. int? orderBy,
  15. int? minCapacity,
  16. int? maxCapacity,
})

Implementation

UHotelRoomReadParams({
  this.pageSize,
  this.pageNumber,
  this.fromCreatedAt,
  this.toCreatedAt,
  this.tags,
  this.ids,
  this.creatorId,
  this.title,
  this.hotelId,
  this.minPrice,
  this.maxPrice,
  this.availableOnly,
  this.selectorArgs,
  this.orderBy,
  this.minCapacity,
  this.maxCapacity,
});