VideoStreamInputConfig constructor
VideoStreamInputConfig({
- Iterable<
String> ? streams, - Iterable<
StreamWithAnnotation> ? streamsWithAnnotation,
Implementation
factory VideoStreamInputConfig({
$core.Iterable<$core.String>? streams,
$core.Iterable<StreamWithAnnotation>? streamsWithAnnotation,
}) {
final $result = create();
if (streams != null) {
$result.streams.addAll(streams);
}
if (streamsWithAnnotation != null) {
$result.streamsWithAnnotation.addAll(streamsWithAnnotation);
}
return $result;
}