RemoteUpload_AddLink method

Future<Map> RemoteUpload_AddLink({
  1. required String url,
  2. String? folder_id,
  3. String? new_title,
  4. String? apiKey,
})

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