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