removeModel static method
Remove a model from the C++ registry
Called when a model is deleted. Matches Swift: CppBridge.ModelRegistry.shared.remove()
Implementation
static Future<void> removeModel(String modelId) async {
await DartBridgeModelRegistry.instance.removeModel(modelId);
}