downloadedModelsForFramework static method
Get downloaded models for a specific framework
Implementation
static Future<List<ModelInfo>> downloadedModelsForFramework(
InferenceFramework framework) async {
final models = await modelsForFramework(framework);
return models.where((model) => model.isDownloaded).toList();
}