addImagesFile method

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

Implementation

addImagesFile({required List<String> urls, String? title, bool? needSwitch}) {
  return _callFunc(
    jsonEncode({
      "key": "addImagesFile",
      "params": [urls, title, needSwitch],
    }),
  );
}