getRemoteUploadSlots method

Future<Map> getRemoteUploadSlots({
  1. String? apiKey,
})

Get total & used remote upload slots

DOCS: https://doodstream.com/api-docs#files-copy

Implementation

Future<Map> getRemoteUploadSlots({
  String? apiKey,
}) async {
  Map result = await invoke(
    uriPath: "urlupload/slots",
    apiKey: apiKey,
    statusCodes: [200],
    specialTypeName: "uploadRemoteUrl",
  );

  return result;
}