RTCIceCandidateStats constructor
RTCIceCandidateStats({})
Implementation
factory RTCIceCandidateStats(
{required String transportId,
String? address,
int? port,
String? protocol,
required RTCIceCandidateType candidateType,
int? priority,
String? url,
String? relayProtocol}) =>
RTCIceCandidateStats._(
transportId: transportId,
address: address ?? undefined,
port: port ?? undefined,
protocol: protocol ?? undefined,
candidateType: candidateType.value,
priority: priority ?? undefined,
url: url ?? undefined,
relayProtocol: relayProtocol ?? undefined);