updateCubeFile function

  1. @deprecated
Future<CubeFile> updateCubeFile(
  1. CubeFile file, [
  2. bool? isNew = false
])

Updates one or more parameters of the file. Available for updating fields: name and contentType.

file - the instance of CubeFile with updated fields. Should contain the id of original file. isNew - set to true if file content should be changed

Implementation

@deprecated
Future<CubeFile> updateCubeFile(CubeFile file, [bool? isNew = false]) {
  return UpdateBlobQuery(file, isNew).perform();
}