TelemetryRecord constructor

TelemetryRecord({
  1. required String os,
  2. required String osVersion,
  3. required String framework,
  4. String? projectId,
  5. String? deviceId,
  6. String? deviceManufacturer,
  7. String? deviceModel,
  8. Map<String, dynamic>? telemetryPayload,
  9. Map<String, dynamic>? errorPayload,
  10. required String timestamp,
  11. required String modelFilename,
  12. int? nCtx,
  13. int? nGpuLayers,
})

Implementation

TelemetryRecord({
  required this.os,
  required this.osVersion,
  required this.framework,
  this.projectId,
  this.deviceId,
  this.deviceManufacturer,
  this.deviceModel,
  this.telemetryPayload,
  this.errorPayload,
  required this.timestamp,
  required this.modelFilename,
  this.nCtx,
  this.nGpuLayers,
});