ZoomVideoSdkSessionShareStatisticsInfo constructor

ZoomVideoSdkSessionShareStatisticsInfo(
  1. num recvFps,
  2. num recvFrameHeight,
  3. num recvFrameWidth,
  4. num recvJitter,
  5. num recvLatency,
  6. num recvPacketLossAvg,
  7. num recvPacketLossMax,
  8. num sendFps,
  9. num sendFrameHeight,
  10. num sendFrameWidth,
  11. num sendJitter,
  12. num sendLatency,
  13. num sendPacketLossAvg,
  14. num sendPacketLossMax,
)

session send packet loss max value

Implementation

num sendPacketLossMax; /// session send packet loss max value

ZoomVideoSdkSessionShareStatisticsInfo(
    this.recvFps,
    this.recvFrameHeight,
    this.recvFrameWidth,
    this.recvJitter,
    this.recvLatency,
    this.recvPacketLossAvg,
    this.recvPacketLossMax,
    this.sendFps,
    this.sendFrameHeight,
    this.sendFrameWidth,
    this.sendJitter,
    this.sendLatency,
    this.sendPacketLossAvg,
    this.sendPacketLossMax);