How to clear cache of a specific view on Drupal 10 programmatically

Use Drupal\views\Views;
$view = Views::getView('your_view_name');
$view->storage->invalidateCaches();
Category