Thread.ofVirtual instead of IntelliJVirtualThreads.ofVirtual.
Thread.ofVirtual is a generic Java API for creation of virtual threads that is not suitable for IntelliJ Platform needs.
Quick fix performs replacement with IntelliJVirtualThreads.ofVirtual.
Example:
// bad:
Thread thread = Thread.ofVirtual().start();
//good
Thread thread = IntelliJVirtualThreads.ofVirtual().start();