UParkingUpdateParams constructor

UParkingUpdateParams({
  1. required String id,
  2. String? title,
  3. String? address,
  4. String? phoneNumber,
  5. int? capacity,
  6. double? entrancePrice,
  7. double? hourlyPrice,
  8. double? dailyPrice,
  9. List<int>? addTags,
  10. List<int>? removeTags,
  11. String? detail1,
  12. String? detail2,
  13. List<int>? tags,
  14. List<String>? adminUserIds,
  15. List<String>? addAdminUserIds,
  16. List<String>? removeAdminUserIds,
})

Implementation

UParkingUpdateParams({
  required this.id,
  this.title,
  this.address,
  this.phoneNumber,
  this.capacity,
  this.entrancePrice,
  this.hourlyPrice,
  this.dailyPrice,
  this.addTags,
  this.removeTags,
  this.detail1,
  this.detail2,
  this.tags,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
});