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