emitDownloadStarted method
Emit download started event
Implementation
Future<void> emitDownloadStarted({
required String modelId,
required String modelName,
required int modelSize,
required String framework,
}) async {
await trackEvent(
eventType: RacEventType.downloadStarted,
data: {
'modelId': modelId,
'modelName': modelName,
'modelSize': modelSize,
'framework': framework,
},
);
}