UHotelCreateParams constructor

UHotelCreateParams({
  1. required List<int> tags,
  2. required String title,
  3. required String cityCode,
  4. int stars = 0,
  5. String? address,
  6. String? phoneNumber,
  7. String? email,
  8. String? description,
  9. String? policies,
  10. String? checkInTime,
  11. String? checkOutTime,
  12. List<String>? amenities,
  13. String? detail1,
  14. String? detail2,
  15. String? id,
  16. String? creatorId,
  17. 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,
});