listLoaded static method
Snapshot of all currently-loaded plugins as PluginInfo.
Mirrors Swift CppBridge.PluginLoader.listLoaded(). The C registry does
not persist the original load path, so each entry returns the plugin
name with an empty path (matching Swift behaviour).
Implementation
static List<PluginInfo> listLoaded() {
return registeredNames()
.map((name) => PluginInfo(name: name, path: ''))
.toList(growable: false);
}