UHotelCreateParams constructor
UHotelCreateParams({
- required List<
int> tags, - required String title,
- required String cityCode,
- int stars = 0,
- String? address,
- String? phoneNumber,
- String? email,
- String? description,
- String? policies,
- String? checkInTime,
- String? checkOutTime,
- List<
String> ? amenities, - String? detail1,
- String? detail2,
- String? id,
- String? creatorId,
- List<
String> ? adminUserIds,
Implementation
UHotelCreateParams({
required this.tags,
required this.title,
required this.cityCode,
this.stars = 0,
this.address,
this.phoneNumber,
this.email,
this.description,
this.policies,
this.checkInTime,
this.checkOutTime,
this.amenities,
this.detail1,
this.detail2,
this.id,
this.creatorId,
this.adminUserIds,
});