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