RestartIceResponse constructor

RestartIceResponse({
  1. String? peerId,
  2. String? transportType,
  3. ProtoIceParameters? iceParameters,
})

Implementation

factory RestartIceResponse({
  $core.String? peerId,
  $core.String? transportType,
  $1.ProtoIceParameters? iceParameters,
}) {
  final $result = create();
  if (peerId != null) {
    $result.peerId = peerId;
  }
  if (transportType != null) {
    $result.transportType = transportType;
  }
  if (iceParameters != null) {
    $result.iceParameters = iceParameters;
  }
  return $result;
}