RtcIceCandidate constructor

RtcIceCandidate(
  1. Map dictionary
)

Implementation

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