RestartTransportIceResponse constructor

RestartTransportIceResponse({
  1. String? transportType,
  2. ProtoIceParameters? iceParameters,
})

Implementation

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