addWhiteboardImagesFile method

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

添加图片文件

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