updateExistingFile method
Future<DirectusFile>
updateExistingFile({
- required List<
int> fileBytes, - required String fileId,
- required String filename,
- String? contentType,
override
Implementation
@override
Future<DirectusFile> updateExistingFile(
{required List<int> fileBytes,
required String fileId,
required String filename,
String? contentType}) {
addCalledFunction(named: "updateExistingFile");
addReceivedObject(fileBytes, name: "fileBytes");
addReceivedObject(fileId, name: "fileId");
addReceivedObject(filename, name: "filename");
addReceivedObject(contentType, name: "contentType");
return Future.value(popNextReturnedObject());
}