Upload_CopyOrClone method
Copy / Clone your's or other's file
Implementation
Future<Map> Upload_CopyOrClone({
required String file_code,
String? folder_id,
String? apiKey,
}) async {
return await copyOrCloneFile(
file_code: file_code,
folder_id: folder_id,
apiKey: apiKey,
);
}