getRemoteUploads method
Remote Upload List & Status
Implementation
Future<Map> getRemoteUploads({
String? apiKey,
}) async {
Map result = await invoke(
uriPath: "urlupload/list",
apiKey: apiKey,
statusCodes: [200],
specialTypeName: "uploadRemoteUrl",
);
return result;
}