RTCIceGatherOptions constructor

RTCIceGatherOptions({
  1. RTCIceTransportPolicy? gatherPolicy,
  2. Iterable<RTCIceServer>? iceServers,
})

Implementation

factory RTCIceGatherOptions(
        {RTCIceTransportPolicy? gatherPolicy,
        Iterable<RTCIceServer>? iceServers}) =>
    RTCIceGatherOptions._(
        gatherPolicy: gatherPolicy?.value ?? RTCIceTransportPolicy.all.value,
        iceServers: iceServers ?? undefined);