RemoteAudioStats constructor

RemoteAudioStats(
  1. int uid,
  2. NetworkQuality quality,
  3. int networkTransportDelay,
  4. int jitterBufferDelay,
  5. int audioLossRate,
  6. int numChannels,
  7. int receivedSampleRate,
  8. int receivedBitrate,
  9. int totalFrozenTime,
  10. int frozenRate,
  11. int totalActiveTime,
)

The total active time (ms) of the remote audio stream after the remote user publish the audio stream.

@since v3.1.2. Constructs a RemoteAudioStats

Implementation

//int publishDuration;

/// Constructs a [RemoteAudioStats]
RemoteAudioStats(
  this.uid,
  this.quality,
  this.networkTransportDelay,
  this.jitterBufferDelay,
  this.audioLossRate,
  this.numChannels,
  this.receivedSampleRate,
  this.receivedBitrate,
  this.totalFrozenTime,
  this.frozenRate,
  this.totalActiveTime,
  //this.publishDuration,
  );