UDormBedUpdateParams constructor

UDormBedUpdateParams({
  1. required String id,
  2. String? detail1,
  3. String? detail2,
  4. List<int>? addTags,
  5. List<int>? removeTags,
  6. List<int>? tags,
  7. String? title,
  8. double? deposit,
  9. double? monthlyRent,
  10. String? roomId,
  11. List<String>? adminUserIds,
  12. List<String>? addAdminUserIds,
  13. List<String>? removeAdminUserIds,
})

Implementation

UDormBedUpdateParams({
  required this.id,
  this.detail1,
  this.detail2,
  this.addTags,
  this.removeTags,
  this.tags,
  this.title,
  this.deposit,
  this.monthlyRent,
  this.roomId,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});