ICETrickle constructor

ICETrickle({
  1. PeerType? peerType,
  2. String? iceCandidate,
})

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