addWhiteboardVideoFile method
添加视频文件
Implementation
void addWhiteboardVideoFile({
required String url,
String? title,
bool? needSwitch,
}) {
TCICWhiteBoardController.addVideoFile(
url: url,
title: title,
needSwitch: needSwitch,
);
TCICLog.info(
"Added whiteboard video file: $url",
actionModule: ActionModule.tcicController.name,
actionName: ActionName.addWhiteboardVideoFile.name,
);
}