updateCubeFile function
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();
}