setCandidate method
Implementation
Future<void> setCandidate(RTCIceCandidate candidate) async {
if (rtcPeerConnection != null) {
await rtcPeerConnection!.addCandidate(candidate);
}
}
Future<void> setCandidate(RTCIceCandidate candidate) async {
if (rtcPeerConnection != null) {
await rtcPeerConnection!.addCandidate(candidate);
}
}