addWhiteboardImagesFile method

Future<void> addWhiteboardImagesFile({
  1. required List<String> urls,
  2. String? title,
  3. bool? needSwitch,
})

添加图片文件

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