stopStats method

void stopStats(
  1. String callId
)

Stops reporting WebRTC statistics for a specific call.

callId The ID of the call to stop stats for.

Implementation

void stopStats(String callId) {
  if (_debug == false) {
    return;
  }
  _statsManager?.stopStatsReporting();
  GlobalLogger().i('Peer :: Stats Manager stopped for $callId');
}