RtcIceCandidate constructor
- Map dictionary
Implementation
factory RtcIceCandidate(Map dictionary) {
var constructorName = JS('', 'window[#]', 'RTCIceCandidate');
return JS('RtcIceCandidate', 'new #(#)', constructorName,
convertDartToNative_SerializedScriptValue(dictionary));
}