CrMixerOutPutCfg constructor
CrMixerOutPutCfg({})
Implementation
CrMixerOutPutCfg({
required this.type,
this.fileName,
this.encryptType,
this.isUploadOnRecording,
this.serverPathFileName,
this.liveUrl,
this.errRetryTimes,
}) {
encryptType = encryptType ?? 0;
isUploadOnRecording = isUploadOnRecording ?? false;
serverPathFileName = serverPathFileName ?? "";
liveUrl = liveUrl ?? "";
errRetryTimes = errRetryTimes ?? 1;
}