StreamStatistics constructor

StreamStatistics({
  1. required int? cacheSize,
  2. required int? sentAudioFrames,
  3. required int? sentVideoFrames,
  4. required int? droppedAudioFrames,
  5. required int? droppedVideoFrames,
  6. required int? bitrate,
  7. required int? width,
  8. required int? height,
  9. required bool? isAudioMuted,
})

Implementation

StreamStatistics({
  required this.cacheSize,
  required this.sentAudioFrames,
  required this.sentVideoFrames,
  required this.droppedAudioFrames,
  required this.droppedVideoFrames,
  required this.bitrate,
  required this.width,
  required this.height,
  required this.isAudioMuted,
});