ProtoIceCandidates constructor
ProtoIceCandidates({})
Implementation
factory ProtoIceCandidates({
$core.String? foundation,
$core.int? priority,
$core.String? ip,
$core.int? port,
$core.String? type,
$core.String? protocol,
$core.String? tcpType,
$core.String? address,
}) {
final $result = create();
if (foundation != null) {
$result.foundation = foundation;
}
if (priority != null) {
$result.priority = priority;
}
if (ip != null) {
$result.ip = ip;
}
if (port != null) {
$result.port = port;
}
if (type != null) {
$result.type = type;
}
if (protocol != null) {
$result.protocol = protocol;
}
if (tcpType != null) {
$result.tcpType = tcpType;
}
if (address != null) {
$result.address = address;
}
return $result;
}