UVehicleUpdateParams constructor

UVehicleUpdateParams({
  1. required String id,
  2. List<int>? addTags,
  3. List<int>? removeTags,
  4. List<int>? tags,
  5. String? brand,
  6. String? color,
  7. String? detail1,
  8. String? detail2,
  9. List<String>? adminUserIds,
  10. List<String>? addAdminUserIds,
  11. List<String>? removeAdminUserIds,
  12. String? licencePlate,
})

Implementation

UVehicleUpdateParams({
  required this.id,
  this.addTags,
  this.removeTags,
  this.tags,
  this.brand,
  this.color,
  this.detail1,
  this.detail2,
  this.adminUserIds,
  this.addAdminUserIds,
  this.removeAdminUserIds,
  this.licencePlate,
});