addWhiteboardImagesFile method
添加图片文件
Implementation
void addWhiteboardImagesFile({
required List<String> urls,
String? title,
bool? needSwitch,
}) {
TCICWhiteBoardController.addImagesFile(
urls: urls,
title: title,
needSwitch: needSwitch,
);
TCICLog.info(
"Added whiteboard images file: ${urls.length} images",
actionModule: ActionModule.tcicController.name,
actionName: ActionName.addWhiteboardImagesFile.name,
);
}