UHotelReservationCreateParams constructor

UHotelReservationCreateParams({
  1. required List<int> tags,
  2. required DateTime checkInDate,
  3. required DateTime checkOutDate,
  4. required int guestCount,
  5. required String userId,
  6. required String roomId,
  7. double? totalPrice,
  8. String? guestName,
  9. String? guestPhone,
  10. String? notes,
  11. int? penaltyPrecentEveryDate,
  12. String? detail1,
  13. String? detail2,
  14. String? id,
  15. String? creatorId,
  16. List<String>? adminUserIds,
})

Implementation

UHotelReservationCreateParams({
  required this.tags,
  required this.checkInDate,
  required this.checkOutDate,
  required this.guestCount,
  required this.userId,
  required this.roomId,
  this.totalPrice,
  this.guestName,
  this.guestPhone,
  this.notes,
  this.penaltyPrecentEveryDate,
  this.detail1,
  this.detail2,
  this.id,
  this.creatorId,
  this.adminUserIds,
});