CompressedLogBatch constructor

CompressedLogBatch({
  1. required String id,
  2. required DateTime timestamp,
  3. required int logCount,
  4. required int uncompressedSize,
  5. required int compressedSize,
  6. required double compressionRatio,
  7. required Uint8List compressedData,
  8. required List<LogLevel> logLevels,
  9. required Map<String, DateTime> timeRange,
})

Implementation

CompressedLogBatch({
  required this.id,
  required this.timestamp,
  required this.logCount,
  required this.uncompressedSize,
  required this.compressedSize,
  required this.compressionRatio,
  required this.compressedData,
  required this.logLevels,
  required this.timeRange,
});