removeModel static method

Future<void> removeModel(
  1. String modelId
)

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);
}