ProtoIceCandidates constructor

ProtoIceCandidates({
  1. String? foundation,
  2. int? priority,
  3. String? ip,
  4. int? port,
  5. String? type,
  6. String? protocol,
  7. String? tcpType,
  8. String? address,
})

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;
}