RemoteUpload_AddLink method
Upload files using direct links
Implementation
Future<Map> RemoteUpload_AddLink({
required String url,
String? folder_id,
String? new_title,
String? apiKey,
}) async {
return await uploadFileFromRemote(
url: url,
folder_id: folder_id,
new_title: new_title,
apiKey: apiKey,
);
}