VideoStream constructor

Implementation

factory VideoStream({
  VideoStream_H264CodecSettings? h264,
  VideoStream_H265CodecSettings? h265,
  VideoStream_Vp9CodecSettings? vp9,
}) {
  final $result = create();
  if (h264 != null) {
    $result.h264 = h264;
  }
  if (h265 != null) {
    $result.h265 = h265;
  }
  if (vp9 != null) {
    $result.vp9 = vp9;
  }
  return $result;
}