updateDownloadStatus method

Future<void> updateDownloadStatus(
  1. String modelId,
  2. String? localPath
)

Update the download status / local path for a model in the C++ registry. Called after a successful generated-proto download completes. download.

Implementation

Future<void> updateDownloadStatus(String modelId, String? localPath) =>
    DartBridgeModelRegistry.instance.updateDownloadStatus(modelId, localPath);