downloadModel method
Downloads a model without progress tracking
Implementation
@override
Future<void> downloadModel(ModelSpec spec, {String? token}) async {
await _ensureInitialized();
// Use the stream version but don't yield progress
await for (final _ in downloadModelWithProgress(spec, token: token)) {
// Just consume the stream
}
}