ManageFiles_FileThumbnail method

Future<Map> ManageFiles_FileThumbnail({
  1. required String file_code,
  2. String? apiKey,
})

Get file splash, single or thumbnail image

Implementation

Future<Map> ManageFiles_FileThumbnail({
  required String file_code,
  String? apiKey,
}) async {
  return await getFileThumbnail(
    file_code: file_code,
    apiKey: apiKey,
  );
}