Upload_CopyOrClone method

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

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