PipeProduceResponse constructor

PipeProduceResponse({
  1. String? roomId,
  2. String? pipeProducerId,
  3. bool? status,
})

Implementation

factory PipeProduceResponse({
  $core.String? roomId,
  $core.String? pipeProducerId,
  $core.bool? status,
}) {
  final $result = create();
  if (roomId != null) {
    $result.roomId = roomId;
  }
  if (pipeProducerId != null) {
    $result.pipeProducerId = pipeProducerId;
  }
  if (status != null) {
    $result.status = status;
  }
  return $result;
}