UHotelRoomCreateParams constructor
UHotelRoomCreateParams({
- required List<
int> tags, - required String title,
- required int capacity,
- required double pricePerNight,
- required String hotelId,
- String? roomNumber,
- int quantity = 1,
- bool isAvailable = true,
- String? description,
- String? bedType,
- double? sizeSquareMeters,
- int? floor,
- List<
String> ? amenities, - String? detail1,
- String? detail2,
- String? id,
- String? creatorId,
- List<
String> ? adminUserIds,
Implementation
UHotelRoomCreateParams({
required this.tags,
required this.title,
required this.capacity,
required this.pricePerNight,
required this.hotelId,
this.roomNumber,
this.quantity = 1,
this.isAvailable = true,
this.description,
this.bedType,
this.sizeSquareMeters,
this.floor,
this.amenities,
this.detail1,
this.detail2,
this.id,
this.creatorId,
this.adminUserIds,
});