AVStatistics constructor

AVStatistics({
  1. String userID = '',
  2. int videoBitrate = 0,
  3. int videoWidth = 0,
  4. int videoHeight = 0,
  5. int frameRate = 0,
  6. int audioSampleRate = 0,
  7. int audioBitrate = 0,
})

Implementation

AVStatistics({
  this.userID = '',
  this.videoBitrate = 0,
  this.videoWidth = 0,
  this.videoHeight = 0,
  this.frameRate = 0,
  this.audioSampleRate = 0,
  this.audioBitrate = 0,
});