addWhiteboardVideoFile method

void addWhiteboardVideoFile({
  1. required String url,
  2. String? title,
  3. bool? needSwitch,
})

添加视频文件

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,
  );
}