stopStats method
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');
}