UDormBedCreateParams constructor

UDormBedCreateParams({
  1. required List<int> tags,
  2. required String title,
  3. required double deposit,
  4. required double monthlyRent,
  5. required String roomId,
  6. String? detail1,
  7. String? detail2,
  8. String? id,
  9. String? creatorId,
  10. List<String>? adminUserIds,
})

Implementation

UDormBedCreateParams({
  required this.tags,
  required this.title,
  required this.deposit,
  required this.monthlyRent,
  required this.roomId,
  this.detail1,
  this.detail2,
  this.id,
  this.creatorId,
  this.adminUserIds,
});