RtcSessionDescription constructor

RtcSessionDescription(
  1. Map dictionary
)

Implementation

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