UParkingUpdateParams constructor

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

Implementation

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