TrackInfo constructor
TrackInfo({})
Implementation
factory TrackInfo({
$core.String? trackId,
TrackType? trackType,
$core.Iterable<VideoLayer>? layers,
$core.String? mid,
$core.bool? dtx,
$core.bool? stereo,
$core.bool? red,
$core.bool? muted,
}) {
final $result = create();
if (trackId != null) {
$result.trackId = trackId;
}
if (trackType != null) {
$result.trackType = trackType;
}
if (layers != null) {
$result.layers.addAll(layers);
}
if (mid != null) {
$result.mid = mid;
}
if (dtx != null) {
$result.dtx = dtx;
}
if (stereo != null) {
$result.stereo = stereo;
}
if (red != null) {
$result.red = red;
}
if (muted != null) {
$result.muted = muted;
}
return $result;
}