UHotelRoomCreateParams constructor

UHotelRoomCreateParams({
  1. required List<int> tags,
  2. required String title,
  3. required int capacity,
  4. required double pricePerNight,
  5. required String hotelId,
  6. int quantity = 1,
  7. bool isAvailable = true,
  8. String? id,
  9. String? creatorId,
  10. String? detail1,
  11. String? detail2,
  12. List<String>? adminUserIds,
  13. String? roomNumber,
  14. String? description,
  15. String? bedType,
  16. double? sizeSquareMeters,
  17. int? floor,
  18. int? extraGuestCapacity,
  19. double? extraGuestPrice,
})

Implementation

UHotelRoomCreateParams({
  required this.tags,
  required this.title,
  required this.capacity,
  required this.pricePerNight,
  required this.hotelId,
  this.quantity = 1,
  this.isAvailable = true,
  this.id,
  this.creatorId,
  this.detail1,
  this.detail2,
  this.adminUserIds,
  this.roomNumber,
  this.description,
  this.bedType,
  this.sizeSquareMeters,
  this.floor,
  this.extraGuestCapacity,
  this.extraGuestPrice,
});