addIceCandidate method
void
addIceCandidate(
- RTCIceCandidate candidate
Implementation
void addIceCandidate(RTCIceCandidate candidate) {
if (_peerConnection == null) {
throw 'Init must be called first!';
}
_peerConnection.addCandidate(candidate);
}