UDormBedContractUpdateParams constructor

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

Implementation

UDormBedContractUpdateParams({
  required this.id,
  this.addTags,
  this.removeTags,
  this.tags,
  this.startDate,
  this.endDate,
  this.deposit,
  this.rent,
  this.detail1,
  this.detail2,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});