ManageFiles_FileRename method
Rename your file
Implementation
Future<Map> ManageFiles_FileRename({
required String file_code,
required String title,
String? apiKey,
}) async {
return await setNameFile(
file_code: file_code,
title: title,
apiKey: apiKey,
);
}