RtcSessionDescription.new constructor - RtcSessionDescription - dart:html library (original) (raw)
RtcSessionDescription(
- Map dictionary )
Implementation
factory RtcSessionDescription(Map dictionary) {
var constructorName = JS('', 'window[#]', 'RTCSessionDescription');
return JS(
'RtcSessionDescription',
'new #(#)',
constructorName,
convertDartToNative_SerializedScriptValue(dictionary),
);
}