downloadFile method

Future<Uint8List> downloadFile(
  1. String path, {
  2. String? storageName,
  3. String? versionId,
})

Download file

Implementation

Future<Uint8List> downloadFile(String path,
    {String? storageName, String? versionId}) async {
  // ignore: prefer_final_locals
  Object? postBody;

  // create path and map variables
  final String requestPath = "/barcode/storage/file/{path}"
      .replaceAll("{format}", "json")
      .replaceAll("{path}", path);

  // query params
  final List<QueryParam> queryParams = [];
  final Map<String, String> headerParams = {};
  final Map<String, String> formParams = {};
  if (storageName != null) {
    queryParams.addAll(
        convertParametersForCollectionFormat("", "storageName", storageName));
  }
  if (versionId != null) {
    queryParams.addAll(
        convertParametersForCollectionFormat("", "versionId", versionId));
  }

  final List<String> contentTypes = ["application/json"];

  final String contentType =
      contentTypes.isNotEmpty ? contentTypes[0] : "application/json";
  final List<String> authNames = ["JWT"];

  final response = await _apiClient.invokeAPI(requestPath, 'GET', queryParams,
      postBody, headerParams, formParams, contentType, authNames);

  if (response.statusCode >= 400) {
    throw ApiException(response.statusCode, response.body);
  } else {
    return response.bodyBytes;
  }
}