'Flutter webrtc video calling issue:Not stopping "I/org.webrtc.Logging(32282): EglRenderer: Duration.." after hangup the call

enter image description here I tried to find the solution. But I failed. Please help me if anybody know the solution.



Solution 1:[1]

I solved this issue. just these lines:

 _localRenderer.dispose();

_remoteRenderer.dispose();

Solution 2:[2]

You must set the srcObject as null also like this code

localRenderer.srcObject = null;
await localRenderer.dispose();

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Rahman Rezaee