encode method

Object encode()

Implementation

Object encode() {
  return <Object?>[
    txBytes,
    rxBytes,
    cpuAppUsage,
    cpuTotalUsage,
    memoryAppUsageRatio,
    memoryTotalUsageRatio,
    memoryAppUsageInKBytes,
    totalDuration,
    txAudioBytes,
    txVideoBytes,
    rxAudioBytes,
    rxVideoBytes,
    rxAudioKBitRate,
    rxVideoKBitRate,
    txAudioKBitRate,
    txVideoKBitRate,
    upRtt,
    downRtt,
    txAudioPacketLossRate,
    txVideoPacketLossRate,
    txAudioPacketLossSum,
    txVideoPacketLossSum,
    txAudioJitter,
    txVideoJitter,
    rxAudioPacketLossRate,
    rxVideoPacketLossRate,
    rxAudioPacketLossSum,
    rxVideoPacketLossSum,
    rxAudioJitter,
    rxVideoJitter,
  ];
}