stopStats method

void stopStats(
  1. String callId
)

Stops WebRTC statistics reporting for the given call ID. This only acts if debug mode is enabled. callId The ID of the call for which to stop stats.

Implementation

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