TelemetryRecord constructor

TelemetryRecord({
  1. required DateTime timestamp,
  2. BackendConnectionErrors? backendConnectionErrors,
  3. int? segmentsReceivedCount,
  4. int? segmentsRejectedCount,
  5. int? segmentsSentCount,
  6. int? segmentsSpilloverCount,
})

Implementation

TelemetryRecord({
  required this.timestamp,
  this.backendConnectionErrors,
  this.segmentsReceivedCount,
  this.segmentsRejectedCount,
  this.segmentsSentCount,
  this.segmentsSpilloverCount,
});