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