ICETrickle constructor
Implementation
factory ICETrickle({
$0.PeerType? peerType,
$core.String? iceCandidate,
}) {
final result = create();
if (peerType != null) result.peerType = peerType;
if (iceCandidate != null) result.iceCandidate = iceCandidate;
return result;
}