ManageFiles_FileRename method

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

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