addWhiteboardImagesFile method
添加图片文件
Implementation
Future<void> addWhiteboardImagesFile({required List<String> urls, String? title, bool? needSwitch}) async {
await 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);
}